require(data.table)
## Loading required package: data.table
## Warning: package 'data.table' was built under R version 4.0.3
require(dplyr)
## Loading required package: dplyr
## Warning: package 'dplyr' was built under R version 4.0.3
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:data.table':
## 
##     between, first, last
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
require(ggplot2)
## Loading required package: ggplot2
require(tidyr)
## Loading required package: tidyr
## Warning: package 'tidyr' was built under R version 4.0.3
require(kableExtra)
## Loading required package: kableExtra
## Warning: package 'kableExtra' was built under R version 4.0.3
## 
## Attaching package: 'kableExtra'
## The following object is masked from 'package:dplyr':
## 
##     group_rows
require(GGally)
## Loading required package: GGally
## Warning: package 'GGally' was built under R version 4.0.3
## Registered S3 method overwritten by 'GGally':
##   method from   
##   +.gg   ggplot2
require(naniar)
## Loading required package: naniar
## Warning: package 'naniar' was built under R version 4.0.3
require(tidyverse)
## Loading required package: tidyverse
## Warning: package 'tidyverse' was built under R version 4.0.3
## -- Attaching packages ---------------------------------------------------------------------------------------------------------------------- tidyverse 1.3.0 --
## v tibble  3.0.3     v stringr 1.4.0
## v readr   1.4.0     v forcats 0.5.0
## v purrr   0.3.4
## Warning: package 'readr' was built under R version 4.0.3
## Warning: package 'stringr' was built under R version 4.0.3
## Warning: package 'forcats' was built under R version 4.0.3
## -- Conflicts ------------------------------------------------------------------------------------------------------------------------- tidyverse_conflicts() --
## x dplyr::between()         masks data.table::between()
## x dplyr::filter()          masks stats::filter()
## x dplyr::first()           masks data.table::first()
## x kableExtra::group_rows() masks dplyr::group_rows()
## x dplyr::lag()             masks stats::lag()
## x dplyr::last()            masks data.table::last()
## x purrr::transpose()       masks data.table::transpose()
require(Rmisc)
## Loading required package: Rmisc
## Warning: package 'Rmisc' was built under R version 4.0.3
## Loading required package: lattice
## Loading required package: plyr
## Warning: package 'plyr' was built under R version 4.0.3
## ------------------------------------------------------------------------------
## You have loaded plyr after dplyr - this is likely to cause problems.
## If you need functions from both plyr and dplyr, please load plyr first, then dplyr:
## library(plyr); library(dplyr)
## ------------------------------------------------------------------------------
## 
## Attaching package: 'plyr'
## The following object is masked from 'package:purrr':
## 
##     compact
## The following objects are masked from 'package:dplyr':
## 
##     arrange, count, desc, failwith, id, mutate, rename, summarise,
##     summarize
require(plotly)
## Loading required package: plotly
## Warning: package 'plotly' was built under R version 4.0.3
## 
## Attaching package: 'plotly'
## The following objects are masked from 'package:plyr':
## 
##     arrange, mutate, rename, summarise
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
#require(R.utils)
#require(mapboxapi)
#loading data #change the working directory here to upload your data

airbnb <- read.csv("C:\\Users\\Mallikarjuna\\Desktop\\Data Challenge\\listings.csv")
zillow <- read.csv("C:\\Users\\Mallikarjuna\\Desktop\\Data Challenge\\Zip_Zhvi_2bedroom.csv")
#checking the dimensions of data

dim(airbnb)
## [1] 48895   106
dim(zillow)
## [1] 8946  262
#replacing the words to have unique name for NY state and filtering airbnb data using state as NY and bedrooms as 2 

airbnb$state <- (gsub("New York","NY",airbnb$state))
airbnb$state <- (gsub("ny","NY",airbnb$state))
airbnbfiltered <- airbnb[which(airbnb$state=="NY" & airbnb$bedrooms == 2),]
zillowfiltered <- zillow[which(zillow$State =="NY"),]
#region name is zipcode in data dictionary so converting it to zipcode 
colnames(zillowfiltered)[2] <- "zipcode"

# convert zipcode to char in zillow to not lose data
zillowfiltered$zipcode <- as.character(zillowfiltered$zipcode)
airbnbfiltered$zipcode <- as.character(airbnbfiltered$zipcode)

# merge two datasets by zipcode
mergedata <- merge(airbnbfiltered, zillowfiltered , by = "zipcode" )
#To display names of columns and 10 rows of Merged data to decide important columns

names(mergedata)
##   [1] "zipcode"                                     
##   [2] "id"                                          
##   [3] "listing_url"                                 
##   [4] "scrape_id"                                   
##   [5] "last_scraped"                                
##   [6] "name"                                        
##   [7] "summary"                                     
##   [8] "space"                                       
##   [9] "description"                                 
##  [10] "experiences_offered"                         
##  [11] "neighborhood_overview"                       
##  [12] "notes"                                       
##  [13] "transit"                                     
##  [14] "access"                                      
##  [15] "interaction"                                 
##  [16] "house_rules"                                 
##  [17] "thumbnail_url"                               
##  [18] "medium_url"                                  
##  [19] "picture_url"                                 
##  [20] "xl_picture_url"                              
##  [21] "host_id"                                     
##  [22] "host_url"                                    
##  [23] "host_name"                                   
##  [24] "host_since"                                  
##  [25] "host_location"                               
##  [26] "host_about"                                  
##  [27] "host_response_time"                          
##  [28] "host_response_rate"                          
##  [29] "host_acceptance_rate"                        
##  [30] "host_is_superhost"                           
##  [31] "host_thumbnail_url"                          
##  [32] "host_picture_url"                            
##  [33] "host_neighbourhood"                          
##  [34] "host_listings_count"                         
##  [35] "host_total_listings_count"                   
##  [36] "host_verifications"                          
##  [37] "host_has_profile_pic"                        
##  [38] "host_identity_verified"                      
##  [39] "street"                                      
##  [40] "neighbourhood"                               
##  [41] "neighbourhood_cleansed"                      
##  [42] "neighbourhood_group_cleansed"                
##  [43] "city"                                        
##  [44] "state"                                       
##  [45] "market"                                      
##  [46] "smart_location"                              
##  [47] "country_code"                                
##  [48] "country"                                     
##  [49] "latitude"                                    
##  [50] "longitude"                                   
##  [51] "is_location_exact"                           
##  [52] "property_type"                               
##  [53] "room_type"                                   
##  [54] "accommodates"                                
##  [55] "bathrooms"                                   
##  [56] "bedrooms"                                    
##  [57] "beds"                                        
##  [58] "bed_type"                                    
##  [59] "amenities"                                   
##  [60] "square_feet"                                 
##  [61] "price"                                       
##  [62] "weekly_price"                                
##  [63] "monthly_price"                               
##  [64] "security_deposit"                            
##  [65] "cleaning_fee"                                
##  [66] "guests_included"                             
##  [67] "extra_people"                                
##  [68] "minimum_nights"                              
##  [69] "maximum_nights"                              
##  [70] "minimum_minimum_nights"                      
##  [71] "maximum_minimum_nights"                      
##  [72] "minimum_maximum_nights"                      
##  [73] "maximum_maximum_nights"                      
##  [74] "minimum_nights_avg_ntm"                      
##  [75] "maximum_nights_avg_ntm"                      
##  [76] "calendar_updated"                            
##  [77] "has_availability"                            
##  [78] "availability_30"                             
##  [79] "availability_60"                             
##  [80] "availability_90"                             
##  [81] "availability_365"                            
##  [82] "calendar_last_scraped"                       
##  [83] "number_of_reviews"                           
##  [84] "number_of_reviews_ltm"                       
##  [85] "first_review"                                
##  [86] "last_review"                                 
##  [87] "review_scores_rating"                        
##  [88] "review_scores_accuracy"                      
##  [89] "review_scores_cleanliness"                   
##  [90] "review_scores_checkin"                       
##  [91] "review_scores_communication"                 
##  [92] "review_scores_location"                      
##  [93] "review_scores_value"                         
##  [94] "requires_license"                            
##  [95] "license"                                     
##  [96] "jurisdiction_names"                          
##  [97] "instant_bookable"                            
##  [98] "is_business_travel_ready"                    
##  [99] "cancellation_policy"                         
## [100] "require_guest_profile_picture"               
## [101] "require_guest_phone_verification"            
## [102] "calculated_host_listings_count"              
## [103] "calculated_host_listings_count_entire_homes" 
## [104] "calculated_host_listings_count_private_rooms"
## [105] "calculated_host_listings_count_shared_rooms" 
## [106] "reviews_per_month"                           
## [107] "RegionID"                                    
## [108] "City"                                        
## [109] "State"                                       
## [110] "Metro"                                       
## [111] "CountyName"                                  
## [112] "SizeRank"                                    
## [113] "X1996.04"                                    
## [114] "X1996.05"                                    
## [115] "X1996.06"                                    
## [116] "X1996.07"                                    
## [117] "X1996.08"                                    
## [118] "X1996.09"                                    
## [119] "X1996.10"                                    
## [120] "X1996.11"                                    
## [121] "X1996.12"                                    
## [122] "X1997.01"                                    
## [123] "X1997.02"                                    
## [124] "X1997.03"                                    
## [125] "X1997.04"                                    
## [126] "X1997.05"                                    
## [127] "X1997.06"                                    
## [128] "X1997.07"                                    
## [129] "X1997.08"                                    
## [130] "X1997.09"                                    
## [131] "X1997.10"                                    
## [132] "X1997.11"                                    
## [133] "X1997.12"                                    
## [134] "X1998.01"                                    
## [135] "X1998.02"                                    
## [136] "X1998.03"                                    
## [137] "X1998.04"                                    
## [138] "X1998.05"                                    
## [139] "X1998.06"                                    
## [140] "X1998.07"                                    
## [141] "X1998.08"                                    
## [142] "X1998.09"                                    
## [143] "X1998.10"                                    
## [144] "X1998.11"                                    
## [145] "X1998.12"                                    
## [146] "X1999.01"                                    
## [147] "X1999.02"                                    
## [148] "X1999.03"                                    
## [149] "X1999.04"                                    
## [150] "X1999.05"                                    
## [151] "X1999.06"                                    
## [152] "X1999.07"                                    
## [153] "X1999.08"                                    
## [154] "X1999.09"                                    
## [155] "X1999.10"                                    
## [156] "X1999.11"                                    
## [157] "X1999.12"                                    
## [158] "X2000.01"                                    
## [159] "X2000.02"                                    
## [160] "X2000.03"                                    
## [161] "X2000.04"                                    
## [162] "X2000.05"                                    
## [163] "X2000.06"                                    
## [164] "X2000.07"                                    
## [165] "X2000.08"                                    
## [166] "X2000.09"                                    
## [167] "X2000.10"                                    
## [168] "X2000.11"                                    
## [169] "X2000.12"                                    
## [170] "X2001.01"                                    
## [171] "X2001.02"                                    
## [172] "X2001.03"                                    
## [173] "X2001.04"                                    
## [174] "X2001.05"                                    
## [175] "X2001.06"                                    
## [176] "X2001.07"                                    
## [177] "X2001.08"                                    
## [178] "X2001.09"                                    
## [179] "X2001.10"                                    
## [180] "X2001.11"                                    
## [181] "X2001.12"                                    
## [182] "X2002.01"                                    
## [183] "X2002.02"                                    
## [184] "X2002.03"                                    
## [185] "X2002.04"                                    
## [186] "X2002.05"                                    
## [187] "X2002.06"                                    
## [188] "X2002.07"                                    
## [189] "X2002.08"                                    
## [190] "X2002.09"                                    
## [191] "X2002.10"                                    
## [192] "X2002.11"                                    
## [193] "X2002.12"                                    
## [194] "X2003.01"                                    
## [195] "X2003.02"                                    
## [196] "X2003.03"                                    
## [197] "X2003.04"                                    
## [198] "X2003.05"                                    
## [199] "X2003.06"                                    
## [200] "X2003.07"                                    
## [201] "X2003.08"                                    
## [202] "X2003.09"                                    
## [203] "X2003.10"                                    
## [204] "X2003.11"                                    
## [205] "X2003.12"                                    
## [206] "X2004.01"                                    
## [207] "X2004.02"                                    
## [208] "X2004.03"                                    
## [209] "X2004.04"                                    
## [210] "X2004.05"                                    
## [211] "X2004.06"                                    
## [212] "X2004.07"                                    
## [213] "X2004.08"                                    
## [214] "X2004.09"                                    
## [215] "X2004.10"                                    
## [216] "X2004.11"                                    
## [217] "X2004.12"                                    
## [218] "X2005.01"                                    
## [219] "X2005.02"                                    
## [220] "X2005.03"                                    
## [221] "X2005.04"                                    
## [222] "X2005.05"                                    
## [223] "X2005.06"                                    
## [224] "X2005.07"                                    
## [225] "X2005.08"                                    
## [226] "X2005.09"                                    
## [227] "X2005.10"                                    
## [228] "X2005.11"                                    
## [229] "X2005.12"                                    
## [230] "X2006.01"                                    
## [231] "X2006.02"                                    
## [232] "X2006.03"                                    
## [233] "X2006.04"                                    
## [234] "X2006.05"                                    
## [235] "X2006.06"                                    
## [236] "X2006.07"                                    
## [237] "X2006.08"                                    
## [238] "X2006.09"                                    
## [239] "X2006.10"                                    
## [240] "X2006.11"                                    
## [241] "X2006.12"                                    
## [242] "X2007.01"                                    
## [243] "X2007.02"                                    
## [244] "X2007.03"                                    
## [245] "X2007.04"                                    
## [246] "X2007.05"                                    
## [247] "X2007.06"                                    
## [248] "X2007.07"                                    
## [249] "X2007.08"                                    
## [250] "X2007.09"                                    
## [251] "X2007.10"                                    
## [252] "X2007.11"                                    
## [253] "X2007.12"                                    
## [254] "X2008.01"                                    
## [255] "X2008.02"                                    
## [256] "X2008.03"                                    
## [257] "X2008.04"                                    
## [258] "X2008.05"                                    
## [259] "X2008.06"                                    
## [260] "X2008.07"                                    
## [261] "X2008.08"                                    
## [262] "X2008.09"                                    
## [263] "X2008.10"                                    
## [264] "X2008.11"                                    
## [265] "X2008.12"                                    
## [266] "X2009.01"                                    
## [267] "X2009.02"                                    
## [268] "X2009.03"                                    
## [269] "X2009.04"                                    
## [270] "X2009.05"                                    
## [271] "X2009.06"                                    
## [272] "X2009.07"                                    
## [273] "X2009.08"                                    
## [274] "X2009.09"                                    
## [275] "X2009.10"                                    
## [276] "X2009.11"                                    
## [277] "X2009.12"                                    
## [278] "X2010.01"                                    
## [279] "X2010.02"                                    
## [280] "X2010.03"                                    
## [281] "X2010.04"                                    
## [282] "X2010.05"                                    
## [283] "X2010.06"                                    
## [284] "X2010.07"                                    
## [285] "X2010.08"                                    
## [286] "X2010.09"                                    
## [287] "X2010.10"                                    
## [288] "X2010.11"                                    
## [289] "X2010.12"                                    
## [290] "X2011.01"                                    
## [291] "X2011.02"                                    
## [292] "X2011.03"                                    
## [293] "X2011.04"                                    
## [294] "X2011.05"                                    
## [295] "X2011.06"                                    
## [296] "X2011.07"                                    
## [297] "X2011.08"                                    
## [298] "X2011.09"                                    
## [299] "X2011.10"                                    
## [300] "X2011.11"                                    
## [301] "X2011.12"                                    
## [302] "X2012.01"                                    
## [303] "X2012.02"                                    
## [304] "X2012.03"                                    
## [305] "X2012.04"                                    
## [306] "X2012.05"                                    
## [307] "X2012.06"                                    
## [308] "X2012.07"                                    
## [309] "X2012.08"                                    
## [310] "X2012.09"                                    
## [311] "X2012.10"                                    
## [312] "X2012.11"                                    
## [313] "X2012.12"                                    
## [314] "X2013.01"                                    
## [315] "X2013.02"                                    
## [316] "X2013.03"                                    
## [317] "X2013.04"                                    
## [318] "X2013.05"                                    
## [319] "X2013.06"                                    
## [320] "X2013.07"                                    
## [321] "X2013.08"                                    
## [322] "X2013.09"                                    
## [323] "X2013.10"                                    
## [324] "X2013.11"                                    
## [325] "X2013.12"                                    
## [326] "X2014.01"                                    
## [327] "X2014.02"                                    
## [328] "X2014.03"                                    
## [329] "X2014.04"                                    
## [330] "X2014.05"                                    
## [331] "X2014.06"                                    
## [332] "X2014.07"                                    
## [333] "X2014.08"                                    
## [334] "X2014.09"                                    
## [335] "X2014.10"                                    
## [336] "X2014.11"                                    
## [337] "X2014.12"                                    
## [338] "X2015.01"                                    
## [339] "X2015.02"                                    
## [340] "X2015.03"                                    
## [341] "X2015.04"                                    
## [342] "X2015.05"                                    
## [343] "X2015.06"                                    
## [344] "X2015.07"                                    
## [345] "X2015.08"                                    
## [346] "X2015.09"                                    
## [347] "X2015.10"                                    
## [348] "X2015.11"                                    
## [349] "X2015.12"                                    
## [350] "X2016.01"                                    
## [351] "X2016.02"                                    
## [352] "X2016.03"                                    
## [353] "X2016.04"                                    
## [354] "X2016.05"                                    
## [355] "X2016.06"                                    
## [356] "X2016.07"                                    
## [357] "X2016.08"                                    
## [358] "X2016.09"                                    
## [359] "X2016.10"                                    
## [360] "X2016.11"                                    
## [361] "X2016.12"                                    
## [362] "X2017.01"                                    
## [363] "X2017.02"                                    
## [364] "X2017.03"                                    
## [365] "X2017.04"                                    
## [366] "X2017.05"                                    
## [367] "X2017.06"
kable(head(mergedata, 10)) %>% 
  kable_styling(bootstrap_options = c("striped", "hover", "responsive")) %>% 
  scroll_box(width = "100%", height = "500px")
zipcode id listing_url scrape_id last_scraped name summary space description experiences_offered neighborhood_overview notes transit access interaction house_rules thumbnail_url medium_url picture_url xl_picture_url host_id host_url host_name host_since host_location host_about host_response_time host_response_rate host_acceptance_rate host_is_superhost host_thumbnail_url host_picture_url host_neighbourhood host_listings_count host_total_listings_count host_verifications host_has_profile_pic host_identity_verified street neighbourhood neighbourhood_cleansed neighbourhood_group_cleansed city state market smart_location country_code country latitude longitude is_location_exact property_type room_type accommodates bathrooms bedrooms beds bed_type amenities square_feet price weekly_price monthly_price security_deposit cleaning_fee guests_included extra_people minimum_nights maximum_nights minimum_minimum_nights maximum_minimum_nights minimum_maximum_nights maximum_maximum_nights minimum_nights_avg_ntm maximum_nights_avg_ntm calendar_updated has_availability availability_30 availability_60 availability_90 availability_365 calendar_last_scraped number_of_reviews number_of_reviews_ltm first_review last_review review_scores_rating review_scores_accuracy review_scores_cleanliness review_scores_checkin review_scores_communication review_scores_location review_scores_value requires_license license jurisdiction_names instant_bookable is_business_travel_ready cancellation_policy require_guest_profile_picture require_guest_phone_verification calculated_host_listings_count calculated_host_listings_count_entire_homes calculated_host_listings_count_private_rooms calculated_host_listings_count_shared_rooms reviews_per_month RegionID City State Metro CountyName SizeRank X1996.04 X1996.05 X1996.06 X1996.07 X1996.08 X1996.09 X1996.10 X1996.11 X1996.12 X1997.01 X1997.02 X1997.03 X1997.04 X1997.05 X1997.06 X1997.07 X1997.08 X1997.09 X1997.10 X1997.11 X1997.12 X1998.01 X1998.02 X1998.03 X1998.04 X1998.05 X1998.06 X1998.07 X1998.08 X1998.09 X1998.10 X1998.11 X1998.12 X1999.01 X1999.02 X1999.03 X1999.04 X1999.05 X1999.06 X1999.07 X1999.08 X1999.09 X1999.10 X1999.11 X1999.12 X2000.01 X2000.02 X2000.03 X2000.04 X2000.05 X2000.06 X2000.07 X2000.08 X2000.09 X2000.10 X2000.11 X2000.12 X2001.01 X2001.02 X2001.03 X2001.04 X2001.05 X2001.06 X2001.07 X2001.08 X2001.09 X2001.10 X2001.11 X2001.12 X2002.01 X2002.02 X2002.03 X2002.04 X2002.05 X2002.06 X2002.07 X2002.08 X2002.09 X2002.10 X2002.11 X2002.12 X2003.01 X2003.02 X2003.03 X2003.04 X2003.05 X2003.06 X2003.07 X2003.08 X2003.09 X2003.10 X2003.11 X2003.12 X2004.01 X2004.02 X2004.03 X2004.04 X2004.05 X2004.06 X2004.07 X2004.08 X2004.09 X2004.10 X2004.11 X2004.12 X2005.01 X2005.02 X2005.03 X2005.04 X2005.05 X2005.06 X2005.07 X2005.08 X2005.09 X2005.10 X2005.11 X2005.12 X2006.01 X2006.02 X2006.03 X2006.04 X2006.05 X2006.06 X2006.07 X2006.08 X2006.09 X2006.10 X2006.11 X2006.12 X2007.01 X2007.02 X2007.03 X2007.04 X2007.05 X2007.06 X2007.07 X2007.08 X2007.09 X2007.10 X2007.11 X2007.12 X2008.01 X2008.02 X2008.03 X2008.04 X2008.05 X2008.06 X2008.07 X2008.08 X2008.09 X2008.10 X2008.11 X2008.12 X2009.01 X2009.02 X2009.03 X2009.04 X2009.05 X2009.06 X2009.07 X2009.08 X2009.09 X2009.10 X2009.11 X2009.12 X2010.01 X2010.02 X2010.03 X2010.04 X2010.05 X2010.06 X2010.07 X2010.08 X2010.09 X2010.10 X2010.11 X2010.12 X2011.01 X2011.02 X2011.03 X2011.04 X2011.05 X2011.06 X2011.07 X2011.08 X2011.09 X2011.10 X2011.11 X2011.12 X2012.01 X2012.02 X2012.03 X2012.04 X2012.05 X2012.06 X2012.07 X2012.08 X2012.09 X2012.10 X2012.11 X2012.12 X2013.01 X2013.02 X2013.03 X2013.04 X2013.05 X2013.06 X2013.07 X2013.08 X2013.09 X2013.10 X2013.11 X2013.12 X2014.01 X2014.02 X2014.03 X2014.04 X2014.05 X2014.06 X2014.07 X2014.08 X2014.09 X2014.10 X2014.11 X2014.12 X2015.01 X2015.02 X2015.03 X2015.04 X2015.05 X2015.06 X2015.07 X2015.08 X2015.09 X2015.10 X2015.11 X2015.12 X2016.01 X2016.02 X2016.03 X2016.04 X2016.05 X2016.06 X2016.07 X2016.08 X2016.09 X2016.10 X2016.11 X2016.12 X2017.01 X2017.02 X2017.03 X2017.04 X2017.05 X2017.06
10003 8335547 https://www.airbnb.com/rooms/8335547 2.019071e+13 2019-07-08 W Hotel Style 2 BR w/ Private Patio Oversized 1.5 bedroom, in clean modern luxury Condo in the East Village. 200 sq. ft. patio in Boutique Apartment in the coolest hood in Manhattan. Subway (F train) across the street and Whole Foods just 2 blocks away. Near Soho, Noho, LES. Walk to: Lower East Side, Chinatown, Little Italy, SoHo, NoHo, Greenwich Village, Washington Square Park. Two city parks across the street, a Whole Foods a block away, and some of the city’s best downtown sites within a short walk. Despite being so central this rear facing apt is extremely quiet. The building, less than 7 years old is a two bedroom, currently arranged as large one bedroom with access to private terrace and lots of light and a very small windowless 2nd room that a twin bed (pull out) and room for a crib if needed. The living room offshoots from the kitchen featuring an open chef’s table also with terrace access, dining room, and wrap around couch. Inside the apartment: - Kitchen equipped with modern design and luxury appliances: Viking stove, Liebherr fridge, microwave, Bosch washer/ dryer, dishwasher, Caesar stone countertops - 10x20 ft Private Terrace with sitting area and table with Stainless steel Grill and Lounge area - Stainless steel propane grill - Large semi- Oversized 1.5 bedroom, in clean modern luxury Condo in the East Village. 200 sq. ft. patio in Boutique Apartment in the coolest hood in Manhattan. Subway (F train) across the street and Whole Foods just 2 blocks away. Near Soho, Noho, LES. Walk to: Lower East Side, Chinatown, Little Italy, SoHo, NoHo, Greenwich Village, Washington Square Park. Two city parks across the street, a Whole Foods a block away, and some of the city’s best downtown sites within a short walk. Despite being so central this rear facing apt is extremely quiet. The building, less than 7 years old is a two bedroom, currently arranged as large one bedroom with access to private terrace and lots of light and a very small windowless 2nd room that a twin bed (pull out) and room for a crib if needed. The living room offshoots from the kitchen featuring an open chef’s table also with terrace access, dining room, and wrap around couch. Inside the apartment: - Kitchen equipped with modern design and luxury appliances: Vik none This is our home, so we’d ask that you treat it as your own. If something breaks- please just tell us and we can work it out. - absolutely no smoking - no pets, cats unfortunately are especially forbidden due to allergies F Train Across the Street, 5 minute walk to B, D, N, R and 6. Also, express Bus line goes up 1st Ave. Totally Central, you can get pretty much anywhere you want to be quickly. You can also go get a great run in at the East River Park by going down Houston. Full access We’ve lived in NYC for 10 years so happy to help with recommendations. NA NA https://a0.muscache.com/im/pictures/6420851b-b480-426b-8ef6-974c74420205.jpg?aki_policy=large NA 1237358 https://www.airbnb.com/users/show/1237358 David 2011-10-02 New York, New York, United States Hi, I’m originally from Chicago now living in NYC. I’m recently married and often looking to get out of the City for some peace and quiet. I work at a Social Enterprise that helps low wage workers find jobs. N/A N/A N/A f https://a0.muscache.com/im/users/1237358/profile_pic/1317580868/original.jpg?aki_policy=profile_small https://a0.muscache.com/im/users/1237358/profile_pic/1317580868/original.jpg?aki_policy=profile_x_medium East Village 1 1 [‘email’, ‘phone’, ‘facebook’, ‘reviews’, ‘jumio’, ‘government_id’, ‘work_email’] t t New York, NY, United States Manhattan East Village Manhattan New York NY New York New York, NY US United States 40.72342 -73.98871 t Apartment Entire home/apt 4 1 2 2 Real Bed {Kitchen,Elevator,“Buzzer/wireless intercom”,Heating,“Family/kid friendly”,Washer,Dryer,“Smoke detector”,“Carbon monoxide detector”,Essentials,Shampoo,Hangers} NA $250.00 $400.00 $85.00 1 $0.00 2 1125 2 2 1125 1125 2.0 1125 42 months ago t 0 0 0 0 2019-07-08 1 0 2015-09-26 2015-09-26 100 10 10 10 8 10 10 f f f moderate f f 1 1 0 0 0.02 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 31408487 https://www.airbnb.com/rooms/31408487 2.019071e+13 2019-07-08 Sunny Designer Apartment in East Village Cozy, clean + comfortable apartment in the East Village. This listing is for a lovely, two bedroom 5th floor walk-up on E 11th St. East Village and a short walk away from Lower East Side, West Village, SoHo, Noho, Chinatown, Little Italy, and the rest of downtown Manhattan! Room 1: A large, bright room with a very comfortable queen-sized murphy bed, couch, large closet, and spectacular views of lower Manhattan. Room 2: Another large bright room with a traditional full size bed, dresser + large closet. The Host: Friendly, creative female who loves to travel, paint, make clothes, listen to music, and meet new people! I’ve lived in the neighborhood for over 6 years and have lots recommendations for favorite coffee shops, bars, restaurants, bookstores, museums, and anything else you can think of in the city. Feel free to write if you have any questions! Cozy, clean + comfortable apartment in the East Village. This listing is for a lovely, two bedroom 5th floor walk-up on E 11th St. East Village and a short walk away from Lower East Side, West Village, SoHo, Noho, Chinatown, Little Italy, and the rest of downtown Manhattan! Room 1: A large, bright room with a very comfortable queen-sized murphy bed, couch, large closet, and spectacular views of lower Manhattan. Room 2: Another large bright room with a traditional full size bed, dresser + large closet. The Host: Friendly, creative female who loves to travel, paint, make clothes, listen to music, and meet new people! I’ve lived in the neighborhood for over 6 years and have lots recommendations for favorite coffee shops, bars, restaurants, bookstores, museums, and anything else you can think of in the city. Feel free to write if you have any questions! Kitchen + bathroom I am currently located on the west coast, so I am not available in person for guest interactions. Please don’t hesitat none I love the East Village because it still has pieces of that authentic New York City feel. The East Village is filled with wonderful shops, bars, cafes + restaurants. It’s got loads of personality + charm. The East Village is centrally located, within 20 minutes walk to iconic experiences like the Flatiron Building + Madison Square Park, SoHo, the Highline + the Meatpacking district. I think the best way to experience New York is on foot. There’s so much to see + half the fun of the city is just being on the ground experiencing its sites + sounds. The toilet is outside the apartment–about 10 feet down the hall + is not shared with any of the other apartments. This is one of the downsides of living in a historic, pre-war building but gives an authentic New York experience ;) We are a 10 minute walk from Union Square (4,5,6,N,Q,R trains) + 6 minutes to 1st Ave L train, making getting around the city quick + easy. Steps away from wonderful bars, restaurants + parks. Downtown location allows for walking exploration of the city. Kitchen + bathroom I am currently located on the west coast, so I am not available in person for guest interactions. Please don’t hesitate to reach out if there’s anything I can help you with :) The keys must be returned to the Keycafe lockbox where it was picked up. Failure to due so will result in a $50 charge. If you lose or take the keys, there will be a $100 charge deducted from your security deposit. NA NA https://a0.muscache.com/im/pictures/e788dc44-4157-4e1c-b70d-c3b6c51c1de9.jpg?aki_policy=large NA 23862648 https://www.airbnb.com/users/show/23862648 Cecily 2014-11-17 New York, New York, United States within an hour 100% N/A f https://a0.muscache.com/im/pictures/user/051987d0-b0b3-4ba7-9484-01a79e33a4d9.jpg?aki_policy=profile_small https://a0.muscache.com/im/pictures/user/051987d0-b0b3-4ba7-9484-01a79e33a4d9.jpg?aki_policy=profile_x_medium East Village 1 1 [‘email’, ‘phone’, ‘jumio’, ‘offline_government_id’, ‘selfie’, ‘government_id’] t t New York, NY, United States East Village East Village Manhattan New York NY New York New York, NY US United States 40.73065 -73.98523 t Apartment Entire home/apt 4 1 2 2 Real Bed {Wifi,“Air conditioning”,Kitchen,Heating,“Smoke detector”,“Carbon monoxide detector”,“First aid kit”,Essentials,Shampoo,Hangers,“Hair dryer”,Iron,“Laptop friendly workspace”,“Self check-in”,Lockbox,“Hot water”,“Long term stays allowed”} NA $88.00 $200.00 $100.00 1 $0.00 2 1125 2 3 1125 1125 2.1 1125 today t 2 2 5 5 2019-07-08 18 18 2019-02-20 2019-06-23 93 9 9 9 9 10 9 f t f strict_14_with_grace_period f f 1 1 0 0 3.88 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 21783251 https://www.airbnb.com/rooms/21783251 2.019071e+13 2019-07-08 Separate 2 Bedroom Apartment located inside Loft. Outstanding Location, Separate 2 Bedroom Apartment located inside New York City Loft. Located in Noho the heart of the village close to Soho east village west village Washington Square Park. Tremendous location. 11 foot ceilings and lots of room. You enter through our living room to get to your private apartment. This living room is not shared. You can see a picture of our living room in the last few pictures. The apartment is an entire place to your self once inside. Guests will have access to the second apartment in our loft. Guests will have there own kitchen bathroom living room with queen size bed and seperate bedroom with king size bed. Outstanding Location, Separate 2 Bedroom Apartment located inside New York City Loft. Located in Noho the heart of the village close to Soho east village west village Washington Square Park. Tremendous location. 11 foot ceilings and lots of room. You enter through our living room to get to your private apartment. This living room is not shared. You can see a picture of our living room in the last few pictures. The apartment is an entire place to your self once inside. Guests will have access to the second apartment in our loft. Guests will have there own kitchen bathroom living room with queen size bed and seperate bedroom with king size bed. Guests have access to the whole separate apartment within the loft. The neighberhood is the east village of New York City. Close to stores of all sorts and a variety of restaurants. Guests will be 10 minutes from Soho and 20 from Times Square. The 6 train plus N and the R are located 2 minutes away. These trains will take you throughout m none The neighberhood is the east village of New York City. Close to stores of all sorts and a variety of restaurants. Guests will be 10 minutes from Soho and 20 from Times Square. The 6 train plus N and the R are located 2 minutes away. These trains will take you throughout most parts of the city. The L is a 6 block walk and will take you to most parts of Brooklyn. The A C E and 1 2 and 3 trains are located 10 blocks away and will take you through the west side. Guests have access to the whole separate apartment within the loft. NA NA https://a0.muscache.com/im/pictures/8f1f2095-08dc-481d-97ba-1ecaf0e4c57c.jpg?aki_policy=large NA 158725307 https://www.airbnb.com/users/show/158725307 Greg 2017-11-14 New York, New York, United States within a few hours 100% N/A f https://a0.muscache.com/im/pictures/user/319adcad-b8da-4459-a59f-b3b3eb7b9c53.jpg?aki_policy=profile_small https://a0.muscache.com/im/pictures/user/319adcad-b8da-4459-a59f-b3b3eb7b9c53.jpg?aki_policy=profile_x_medium Noho 3 3 [‘email’, ‘phone’, ‘reviews’, ‘jumio’, ‘offline_government_id’, ‘selfie’, ‘government_id’] t f New York, NY, United States Noho NoHo Manhattan New York NY New York New York, NY US United States 40.72909 -73.99125 t Apartment Entire home/apt 4 1 2 2 Real Bed {TV,“Cable TV”,Wifi,“Air conditioning”,Kitchen,“Paid parking off premises”,“Pets allowed”,Elevator,Heating,“Family/kid friendly”,“Smoke detector”,“First aid kit”,“Fire extinguisher”,Essentials,Shampoo,Hangers,“Hair dryer”,Iron,“Laptop friendly workspace”,“Private living room”,Bathtub,“Hot water”,“Bed linens”,“Extra pillows and blankets”,Microwave,“Coffee maker”,Refrigerator,“Dishes and silverware”,“Cooking basics”,Stove,“Luggage dropoff allowed”,“Long term stays allowed”,“Wide hallways”,“Well-lit path to entrance”,“No stairs or steps to enter”,“Wide entrance”,“Extra space around bed”,“Accessible-height bed”,“No stairs or steps to enter”} NA $200.00 $175.00 $50.00 1 $0.00 2 14 2 2 14 14 2.0 14 7 weeks ago t 3 7 7 194 2019-07-08 81 59 2017-12-13 2019-06-21 95 10 8 10 10 10 10 f f f moderate f f 2 2 0 0 4.24 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 8354383 https://www.airbnb.com/rooms/8354383 2.019071e+13 2019-07-08 Artist 1.5 bedroom WHOLE apartment! See the great things NYC has to offer starting at the best location in town, in a modern, elegant, and stylish apartment in the middle of the city! Welcome to the greatest place in NYC! My apartment is a newly renovated artist apartment with wooden floors and modern finishes. It has 1 bedroom, and an extended bedroom, a spacey living room, a fully equipped kitchen, and a projector/cinema area. I’ll be out of town for a few days so luck you, you’ll get the chance to love NY even more from my apartment. The location couldn’t be more perfect: It’s on Union Square/Gramercy Park, that’s right in the center of EVERYTHING in Manhattan so it’s perfect location for shopping, eating at cute little chick hidden places, hanging out, and getting around anywhere, anytime in the city. There are 24-hour buses and subways just around the corner. The lower east-side (LES) is 3 blocks down so you can walk there for really famous bars and restaurants of all kinds. There is also a supermarket and a laundromat around the corner. Upgraded features: -Living room has a sofa bed to accommodate up to 2 guests. -There’s a projector so you can watch movie See the great things NYC has to offer starting at the best location in town, in a modern, elegant, and stylish apartment in the middle of the city! Welcome to the greatest place in NYC! My apartment is a newly renovated artist apartment with wooden floors and modern finishes. It has 1 bedroom, and an extended bedroom, a spacey living room, a fully equipped kitchen, and a projector/cinema area. I’ll be out of town for a few days so luck you, you’ll get the chance to love NY even more from my apartment. The location couldn’t be more perfect: It’s on Union Square/Gramercy Park, that’s right in the center of EVERYTHING in Manhattan so it’s perfect location for shopping, eating at cute little chick hidden places, hanging out, and getting around anywhere, anytime in the city. There are 24-hour buses and subways just around the corner. The lower east-side (LES) is 3 blocks down so you can walk there for really famous bars and restaurants of all kinds. There is also a supermarket and a laundr none This area is super close to everything, it’s very safe and peaceful, you’ll see nice people walking around their dogs, you’ll have access to the park, and there are so many fun things to do nearby. I have two wonderful, lovings cat who are extremely loving to all humans walking into our magical home. They will be sharing the home with you, so guests must be animal friendly. They are always ready to greet you after a long day and keep you company, and can also understand when you want some ‘me’ time. However, if you’re not into cuddly fluffy cuteness we understand and hope you find a home almost as magical as this one. The L train is around the corner, as well as an express bus. Union Square is about 5-7 mins walk, and connects you to the most centric subway lines in the city. All public transport, buses, subways, and taxis are just around the corner. It’s very easy to get to anywhere in the city from this location. Kitchen, WC, living room, cinema room, laundry room, park, parking I always enjoy the company of my guests and I’m always happy to be their guide/translator/party planner, but unfortunately I’ll be out of time during these dates. -This will be your temporary home in New York, so please treat it with the same respect as your own home. -Please remove your shoes inside the apartment. -No smoking inside the apartment at any time. -Please keep volume at minimum during 10:00pm - 9:00am. -Please respect all items in this home, and don’t operate any devices besides your own. -Keep your belongings neat and in the rented space. -To ensure your stay is the best I can provide, please note no visitors are allowed. Thank you. NA NA https://a0.muscache.com/im/pictures/106357982/be1a5da2_original.jpg?aki_policy=large NA 38204730 https://www.airbnb.com/users/show/38204730 Kathy 2015-07-12 New York, New York, United States

Big dreams, good music, and expensive taste. Yep! That’s me.

I’m an artist/music lover who saves the day every now and then :)

I lived in Europe for many years, and I’ve been in NY for over a few more. I love traveling and learning about different cultures, so I can speak several languages and appreciate all the beautiful randomness this brings.

I am truly passionate about anything art-related, music, cooking, exploring, and socializing. I love making the most out of my day and to do amazing things. I do love sports, but I am a rowing enthusiast, and I also like martial arts and running.
a few days or more 25% N/A f https://a0.muscache.com/im/pictures/1fba800a-2854-4356-9e00-cfe2d9a9a3c8.jpg?aki_policy=profile_small https://a0.muscache.com/im/pictures/1fba800a-2854-4356-9e00-cfe2d9a9a3c8.jpg?aki_policy=profile_x_medium Gramercy Park 3 3 [‘email’, ‘phone’, ‘reviews’, ‘kba’] t t New York, NY, United States Manhattan Gramercy Manhattan New York NY New York New York, NY US United States 40.73524 -73.98441 f Apartment Entire home/apt 4 1 2 2 Real Bed {Internet,Wifi,“Air conditioning”,Kitchen,“Free parking on premises”,“Pets live on this property”,Cat(s),“Buzzer/wireless intercom”,Heating,“Family/kid friendly”,Washer,Dryer,“Smoke detector”,“First aid kit”,Essentials} NA $239.00 $0.00 $90.00 1 $0.00 5 1125 5 5 1125 1125 5.0 1125 3 months ago t 0 17 17 30 2019-07-08 2 1 2016-01-03 2019-01-05 80 8 6 10 10 10 7 f f f strict_14_with_grace_period f f 3 2 1 0 0.05 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 5207973 https://www.airbnb.com/rooms/5207973 2.019071e+13 2019-07-08 Bright 2BD in East Village If you’re looking for fun in the city, there is no place better than the East Village.There are countless bars, resturants, and clubs close by. Public transportation is only 8 min away!Our apartment is perfect for anyone looking for an easy fun stay. Two T.V., Cable and Apple TV. Location Party If you’re looking for fun in the city, there is no place better than the East Village.There are countless bars, resturants, and clubs close by. Public transportation is only 8 min away!Our apartment is perfect for anyone looking for an easy fun stay. Two T.V., Cable and Apple TV. Location Party none Have fun! That’s why you’re coming. But just don’t break anything! NA NA https://a0.muscache.com/im/pictures/66513043/f4417116_original.jpg?aki_policy=large NA 26942242 https://www.airbnb.com/users/show/26942242 Alfred 2015-01-30 US N/A N/A N/A f https://a0.muscache.com/im/users/26942242/profile_pic/1424479967/original.jpg?aki_policy=profile_small https://a0.muscache.com/im/users/26942242/profile_pic/1424479967/original.jpg?aki_policy=profile_x_medium East Village 1 1 [‘email’, ‘phone’, ‘jumio’, ‘government_id’] t f New York, NY, United States East Village East Village Manhattan New York NY New York New York, NY US United States 40.72950 -73.98623 t Apartment Entire home/apt 4 1 2 2 Real Bed {TV,“Cable TV”,Internet,Wifi,“Air conditioning”,Kitchen,“Smoking allowed”,“Pets allowed”,“Pets live on this property”,Dog(s),Cat(s),“Buzzer/wireless intercom”,Heating,Essentials,Shampoo} NA $230.00 $1,200.00 $500.00 $60.00 4 $60.00 2 1125 2 2 1125 1125 2.0 1125 53 months ago t 0 0 0 0 2019-07-08 1 0 2015-03-31 2015-03-31 NA NA NA NA NA NA NA f f f flexible f f 1 1 0 0 0.02 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 17843998 https://www.airbnb.com/rooms/17843998 2.019071e+13 2019-07-08 Large & Sunny, a Lovely 2-Bed Apt in East Village Gorgeous, sun-filled, clean & cozy 2-bedroom apartment in the heart of East Village. You will find everything you need; fresh towels, basic toiletries, kitchen supplies, etc. Easy access to plenty of bars/restaurants and public transport. This rental is in the heart of Manhattan, most neighborhoods are within walking distance. (Union Sq, Soho, Greenwich Village, Lower East Side) and others are up to 20 mins away using public transportation (Brooklyn, Williamsburg, Time Square, Central Park). Gorgeous, sun-filled, clean & cozy 2-bedroom apartment in the heart of East Village. You will find everything you need; fresh towels, basic toiletries, kitchen supplies, etc. Easy access to plenty of bars/restaurants and public transport. This rental is in the heart of Manhattan, most neighborhoods are within walking distance. (Union Sq, Soho, Greenwich Village, Lower East Side) and others are up to 20 mins away using public transportation (Brooklyn, Williamsburg, Time Square, Central Park). none
    • a mostly shoe free house (no outerwear shoes beyond entryway) - - No Candles - - Only guests on itinerary allowed. - - No going out onto fire escape - You are really going to enjoy the place. Just remember to be respectful and polite. Have fun!
NA NA https://a0.muscache.com/im/pictures/9c5bb64d-0015-470d-85b5-5ecdb3fe4a0e.jpg?aki_policy=large NA 23089531 https://www.airbnb.com/users/show/23089531 Caitlin 2014-10-28 New York, New York, United States a few days or more 52% N/A f https://a0.muscache.com/im/users/23089531/profile_pic/1414548424/original.jpg?aki_policy=profile_small https://a0.muscache.com/im/users/23089531/profile_pic/1414548424/original.jpg?aki_policy=profile_x_medium East Village 3 3 [‘email’, ‘phone’, ‘google’, ‘reviews’, ‘kba’] t t New York, NY, United States East Village East Village Manhattan New York NY New York New York, NY US United States 40.72571 -73.98789 t Apartment Entire home/apt 4 1 2 2 Real Bed {TV,Wifi,“Air conditioning”,Heating,“Smoke detector”,“Carbon monoxide detector”,“Safety card”,Essentials,“Lock on bedroom door”,Hangers,“Hair dryer”,Iron,“Laptop friendly workspace”,“translation missing: en.hosting_amenity_49”,“translation missing: en.hosting_amenity_50”} NA $250.00 $200.00 $75.00 1 $0.00 2 20 2 2 20 20 2.0 20 a week ago t 2 5 16 264 2019-07-08 8 4 2017-06-14 2019-06-02 88 9 9 10 9 9 9 f f f strict_14_with_grace_period f f 3 1 2 0 0.32 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 4694179 https://www.airbnb.com/rooms/4694179 2.019071e+13 2019-07-08 Artsy and Cozy 1b. - Walk Everywhere! Sunny & spacious nestled between Union Square & East Village; the ideal NYC location and is perfect for a couple or 2 friends. Beautiful hardwood floors, exposed brick, house plants, a comfy queen bed, big bathroom & kitchen for you to use at your disposal. Feel right at home here in our artsy space. We haven’t rented out our place yet, which is why there are no reviews, but we promise it’s clean and lovely. Welcome to the heart of NYC! The space has a fantastic location where you can literally walk everywhere or at least take a less than 5 minute walk to Union Square station where the N, Q, R, L, 4, 5, 6 trains stop. Apartment is approx. 1 hour 15 mins - 1 hour 30 mins from/to all major airports by public transportation. The space is roomy and homey, and is perfect for a couple or two friends. There are two bedrooms, but the back room is more like a den and can be used as a private work space (desk and wifi included) if you are working on your trip. The apartment is a “boxcar” apartment where each room falls in line after the other – very common in NYC. Please make yourself at home and use the kitchen and fridge. We enjoying cooking and hope you enjoy using the space, too! During the summer, we’ll have fresh basil for you to use as you please. We have a coffee maker, hot water boiler, toaster oven, oven & stove top. No dishwasher, which is also very common in NYC. The city’s wa Sunny & spacious nestled between Union Square & East Village; the ideal NYC location and is perfect for a couple or 2 friends. Beautiful hardwood floors, exposed brick, house plants, a comfy queen bed, big bathroom & kitchen for you to use at your disposal. Feel right at home here in our artsy space. We haven’t rented out our place yet, which is why there are no reviews, but we promise it’s clean and lovely. Welcome to the heart of NYC! The space has a fantastic location where you can literally walk everywhere or at least take a less than 5 minute walk to Union Square station where the N, Q, R, L, 4, 5, 6 trains stop. Apartment is approx. 1 hour 15 mins - 1 hour 30 mins from/to all major airports by public transportation. The space is roomy and homey, and is perfect for a couple or two friends. There are two bedrooms, but the back room is more like a den and can be used as a private work space (desk and wifi included) if you are working on your trip. The apartment is a “boxcar” a none *Note that this is our residence full-time. Please respect our space and our neighbors. L train is right out front - this goes directly to the famous Williamsburg, BK in less than 10 minutes time. Walking distance to famous Union Square and the weekly Greenmarket (farmer’s market). Access to all linens, towels, shower toiletries, wifi and kitchen. We will most likely be here to greet you and show you in, and won’t bother you during your stay unless you need something or have questions. No parties No messes *No loud noises, please! NA NA https://a0.muscache.com/im/pictures/5424a69c-6dac-4ff0-bb36-be7bd00dc0b7.jpg?aki_policy=large NA 3753306 https://www.airbnb.com/users/show/3753306 Michelle 2012-10-04 New York, New York, United States I can’t wait to meet you! I have been an Airbnb fan for almost 7-years and it’s my preferred way of traveling. Thank you in advance, hosts!! N/A N/A N/A f https://a0.muscache.com/im/pictures/user/08d55fd2-d951-4200-858b-aedaff6b9763.jpg?aki_policy=profile_small https://a0.muscache.com/im/pictures/user/08d55fd2-d951-4200-858b-aedaff6b9763.jpg?aki_policy=profile_x_medium Gramercy Park 1 1 [‘email’, ‘phone’, ‘reviews’, ‘jumio’, ‘government_id’] t t New York, NY, United States Manhattan Gramercy Manhattan New York NY New York New York, NY US United States 40.73287 -73.98585 t Apartment Entire home/apt 2 1 2 1 Real Bed {TV,“Cable TV”,Internet,Wifi,“Air conditioning”,Kitchen,“Pets allowed”,“Buzzer/wireless intercom”,Heating,“Family/kid friendly”,Essentials,Shampoo,Hangers,“Hair dryer”,Iron,“Laptop friendly workspace”} NA $180.00 $150.00 $50.00 1 $0.00 1 1125 1 1 1125 1125 1.0 1125 21 months ago t 0 0 0 0 2019-07-08 1 0 2017-09-15 2017-09-15 100 10 10 10 10 10 10 f f f strict_14_with_grace_period f f 1 1 0 0 0.05 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 12813050 https://www.airbnb.com/rooms/12813050 2.019071e+13 2019-07-08 Family Friendly Gramercy Park Gem This is a beautiful, mint two-bedroom, two-bath 1,400 sq ft, 10th floor unit in a luxury New York City building. It’s a perfect apartment for a responsible couple and is family friendly: the second bedroom is a nursery with a crib. This is a beautiful, mint two-bedroom, two-bath 1,400 sq ft, 10th floor unit in a luxury New York City building. It’s a perfect apartment for a responsible couple and is family friendly: the second bedroom is a nursery with a crib. none Kindly don’t wear shoes around the home and upon departure please do all dishes NA NA https://a0.muscache.com/im/pictures/9c4df0d9-659f-414b-923e-ef308d543c70.jpg?aki_policy=large NA 30789837 https://www.airbnb.com/users/show/30789837 Shane 2015-04-07 New York, New York, United States N/A N/A N/A f https://a0.muscache.com/im/pictures/460cdd6c-3ab5-43a1-9f16-67b31741ad41.jpg?aki_policy=profile_small https://a0.muscache.com/im/pictures/460cdd6c-3ab5-43a1-9f16-67b31741ad41.jpg?aki_policy=profile_x_medium Gramercy Park 1 1 [‘email’, ‘phone’, ‘reviews’, ‘kba’, ‘work_email’] t t New York, NY, United States Manhattan Gramercy Manhattan New York NY New York New York, NY US United States 40.73682 -73.98336 t Apartment Entire home/apt 3 2 2 2 Real Bed {TV,“Cable TV”,Internet,Wifi,“Air conditioning”,Kitchen,Doorman,Elevator,“Buzzer/wireless intercom”,Heating,“Family/kid friendly”,Washer,Dryer,“Smoke detector”,“Carbon monoxide detector”,Essentials,“24-hour check-in”,Hangers,“Hair dryer”,Iron,“Laptop friendly workspace”} NA $195.00 $500.00 $75.00 1 $0.00 5 10 5 5 10 10 5.0 10 24 months ago t 0 0 0 0 2019-07-08 1 0 2016-05-13 2016-05-13 NA NA NA NA NA NA NA f f f strict_14_with_grace_period f f 1 1 0 0 0.03 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 8665047 https://www.airbnb.com/rooms/8665047 2.019071e+13 2019-07-08 Zen Apartment With Backyard A beautiful space in the heart of one of trendiest neighborhoods in all of Manhattan. Peaceful & quiet, get a good nights sleep, as well as all the excitement of Manhattan just outside your doorstep. Settle into this spacious two bedroom apartment. Two beautiful beds with fluffy pillows will greet you. The apartment is a quiet enclave in a very noisy city. Cook a meal in the fully equipped kitchen, or go out - there are ample restaurants in the East Village, one of the trendiest neighborhoods in Manhattan. The apartment is located on the first floor, so don’t worry about having to get your luggage up flights of stairs. A beautiful backyard complete with hammock and table is available for use. A beautiful space in the heart of one of trendiest neighborhoods in all of Manhattan. Peaceful & quiet, get a good nights sleep, as well as all the excitement of Manhattan just outside your doorstep. Settle into this spacious two bedroom apartment. Two beautiful beds with fluffy pillows will greet you. The apartment is a quiet enclave in a very noisy city. Cook a meal in the fully equipped kitchen, or go out - there are ample restaurants in the East Village, one of the trendiest neighborhoods in Manhattan. The apartment is located on the first floor, so don’t worry about having to get your luggage up flights of stairs. A beautiful backyard complete with hammock and table is available for use. Guests will have full access to the living room, kitchen, bathroom, and their room. Uncommon for manhattan: There is a backyard with a hammock and lounging area. There is so much to do in the East Village: residents of this part of town are spoiled with chic bars and restaurants are everywhere. Hu none There is so much to do in the East Village: residents of this part of town are spoiled with chic bars and restaurants are everywhere. Hungry? We’ve got you covered: sandwiches at ‘Porchetta’, lobster rolls at ‘Luke’s Lobster’, arepas at ‘Caracas Arepa Bar’, and delicious Greek fare at ‘Pylos’. For desert check out ‘The Big Gay Ice Cream Shop’ for a truly unique Ice-Cream experience. Want to lounge around in the park? Union Square is always cozy and Washington Square Park with it’s magnificent architecture will keep you entertained with street performers galore. Time for a drink? From dive bars to upscale we’ve got you covered. Sip on some smokey whiskey at ‘Copper & Oak’, enjoy a glass of wine at ‘Bibi’, or if you just want a good happy hour try ‘Drop Off Service’, which has one of the best happy hours in the city. Shopping? 5th Avenue, considered the best street for shopping in the world, is just two blocks away. Museums? Nightlife? Poetry slam? The East Village has you covered. If, o Taxis, subways, bike sharing (city bike!), or just walking - getting around is as easy as it gets! Guests will have full access to the living room, kitchen, bathroom, and their room. Uncommon for manhattan: There is a backyard with a hammock and lounging area. NA NA https://a0.muscache.com/im/pictures/a344417f-e96a-47da-b638-b22b54cd3b66.jpg?aki_policy=large NA 17074459 https://www.airbnb.com/users/show/17074459 Mattan 2014-06-21 New York, New York, United States I’m an entrepreneur and philosopher living in NYC. N/A N/A N/A f https://a0.muscache.com/im/pictures/90fcb707-f845-4b7c-adbd-1ee7305f21cc.jpg?aki_policy=profile_small https://a0.muscache.com/im/pictures/90fcb707-f845-4b7c-adbd-1ee7305f21cc.jpg?aki_policy=profile_x_medium East Village 3 3 [‘email’, ‘phone’, ‘reviews’, ‘jumio’, ‘offline_government_id’, ‘government_id’] t t New York, NY, United States Manhattan East Village Manhattan New York NY New York New York, NY US United States 40.73160 -73.98543 t Apartment Entire home/apt 4 1 2 2 Real Bed {Internet,Wifi,“Air conditioning”,Kitchen,“Buzzer/wireless intercom”,Heating,“Family/kid friendly”,“Smoke detector”,“Carbon monoxide detector”,Essentials,Shampoo,“24-hour check-in”,Hangers,“Hair dryer”,Iron,“Laptop friendly workspace”} NA $297.00 $300.00 $50.00 1 $0.00 1 1125 1 1 1125 1125 1.0 1125 17 months ago t 0 0 0 0 2019-07-08 9 0 2016-05-23 2017-06-19 91 10 9 10 10 10 9 f f f strict_14_with_grace_period f f 3 1 2 0 0.24 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
10003 36277571 https://www.airbnb.com/rooms/36277571 2.019071e+13 2019-07-08 FANTASTIC APT IN THE HEART OF THE EAST VILLAGE The apartment is on 2nd floor in a walk up building. Quiet, facing the backyard. Very comfortable for 2 couples with kids. The apartment is facing backyard and is quiet. The apartment is on 2nd floor in a walk up building. Quiet, facing the backyard. Very comfortable for 2 couples with kids. The apartment is facing backyard and is quiet. I’m available 9AM to 10PM call/text 7 days a week. We are located in the heart of East Village. Cafes, Restaurants, boutique shops, galleries, subway walking distance. Everything is walking distance. none We are located in the heart of East Village. Cafes, Restaurants, boutique shops, galleries, subway walking distance. Everything is walking distance. I’m available 9AM to 10PM call/text 7 days a week. NA NA https://a0.muscache.com/im/pictures/09d8535f-80ec-46fd-aabe-59b2fc6c3b61.jpg?aki_policy=large NA 261612429 https://www.airbnb.com/users/show/261612429 Peter 2019-05-13 US N/A N/A N/A f https://a0.muscache.com/im/pictures/user/67996118-c3e2-494b-82b9-de64770edd35.jpg?aki_policy=profile_small https://a0.muscache.com/im/pictures/user/67996118-c3e2-494b-82b9-de64770edd35.jpg?aki_policy=profile_x_medium East Village 1 1 [‘email’, ‘phone’] t t New York, NY, United States Manhattan East Village Manhattan New York NY New York New York, NY US United States 40.72627 -73.98543 t Apartment Entire home/apt 6 1 2 2 Real Bed {TV,Wifi,“Air conditioning”,Kitchen,“Paid parking off premises”,“Pets allowed”,Heating,“Smoke detector”,“Carbon monoxide detector”,Essentials,“Lock on bedroom door”,Hangers,“Hair dryer”,Iron,“Laptop friendly workspace”,Bathtub,“Hot water”,“Bed linens”,“Extra pillows and blankets”,Microwave,Refrigerator,“Dishes and silverware”,“Cooking basics”,Oven,Stove,“Single level home”,“Long term stays allowed”,“Wide hallways”,“No stairs or steps to enter”,“No stairs or steps to enter”,Other} NA $207.00 $500.00 $100.00 1 $0.00 30 1125 30 30 1125 1125 30.0 1125 a week ago t 30 55 55 55 2019-07-08 0 0 NA NA NA NA NA NA NA f t f flexible f f 1 1 0 0 NA 61617 New York NY New York New York 21 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 1387000 1315300 1265900 1217100 1167500 1125800 1106100 1105900 1119200 1130100 1127600 1129900 1168000 1214000 1236900 1295200 1398900 1431700 1377700 1343100 1351900 1354000 1358200 1374800 1378500 1378400 1418300 1441000 1427900 1401900 1391800 1379800 1371400 1367700 1400900 1441100 1475000 1491500 1504700 1499200 1481900 1478800 1509000 1532700 1524300 1520600 1533200 1556600 1586000 1595200 1578900 1587000 1627200 1648100 1614400 1553000 1486000 1417000 1375100 1361300 1333400 1299700 1296500 1273900 1227800 1202600 1207100 1220100 1252400 1285700 1278300 1279100 1326700 1376500 1368900 1366000 1381300 1380700 1368500 1372700 1378000 1361700 1357800 1364400 1358000 1329800 1317800 1333200 1348500 1349500 1352200 1354100 1351900 1364200 1376600 1384200 1387900 1404200 1419200 1425700 1435300 1460300 1466500 1458100 1465500 1502300 1563900 1592000 1596200 1625200 1672300 1699500 1718500 1734300 1748600 1763700 1766700 1772200 1762700 1736700 1712400 1703700 1702500 1708800 1716300 1720500 1721800 1741800 1775800 1796500 1821500 1870100 1901000 1904900 1914000 1926400 1932200 1936700 1945200 1935600 1911200 1918700 1947600 1951300 1932800 1930400 1937500 1935100 1915700 1916500 1965700 2045300 2109100 2147000
#filtering out the important columns into new table
mergedatafil <- mergedata
mergedatafil <- mergedatafil[,c(1,39,41,42,49,50,60,61,65,67,68,69,83,87,367)]
#To display 10 rows of filtered columns

kable(head(mergedatafil, 10)) %>% 
  kable_styling(bootstrap_options = c("striped", "hover", "responsive")) %>% 
  scroll_box(width = "100%", height = "500px")
zipcode street neighbourhood_cleansed neighbourhood_group_cleansed latitude longitude square_feet price cleaning_fee extra_people minimum_nights maximum_nights number_of_reviews review_scores_rating X2017.06
10003 New York, NY, United States East Village Manhattan 40.72342 -73.98871 NA $250.00 $85.00 $0.00 2 1125 1 100 2147000
10003 New York, NY, United States East Village Manhattan 40.73065 -73.98523 NA $88.00 $100.00 $0.00 2 1125 18 93 2147000
10003 New York, NY, United States NoHo Manhattan 40.72909 -73.99125 NA $200.00 $50.00 $0.00 2 14 81 95 2147000
10003 New York, NY, United States Gramercy Manhattan 40.73524 -73.98441 NA $239.00 $90.00 $0.00 5 1125 2 80 2147000
10003 New York, NY, United States East Village Manhattan 40.72950 -73.98623 NA $230.00 $60.00 $60.00 2 1125 1 NA 2147000
10003 New York, NY, United States East Village Manhattan 40.72571 -73.98789 NA $250.00 $75.00 $0.00 2 20 8 88 2147000
10003 New York, NY, United States Gramercy Manhattan 40.73287 -73.98585 NA $180.00 $50.00 $0.00 1 1125 1 100 2147000
10003 New York, NY, United States Gramercy Manhattan 40.73682 -73.98336 NA $195.00 $75.00 $0.00 5 10 1 NA 2147000
10003 New York, NY, United States East Village Manhattan 40.73160 -73.98543 NA $297.00 $50.00 $0.00 1 1125 9 91 2147000
10003 New York, NY, United States East Village Manhattan 40.72627 -73.98543 NA $207.00 $100.00 $0.00 30 1125 0 NA 2147000
#to display the percentage of data missing in each filtered column
gg_miss_var(mergedatafil , show_pct = TRUE) + labs(y = "Percentage")

#to display dimentions and give more info of filtered columns
dim(mergedatafil)
## [1] 1564   15
summary(mergedatafil)
##    zipcode             street          neighbourhood_cleansed
##  Length:1564        Length:1564        Length:1564           
##  Class :character   Class :character   Class :character      
##  Mode  :character   Mode  :character   Mode  :character      
##                                                              
##                                                              
##                                                              
##                                                              
##  neighbourhood_group_cleansed    latitude       longitude       square_feet    
##  Length:1564                  Min.   :40.52   Min.   :-74.21   Min.   :   0.0  
##  Class :character             1st Qu.:40.68   1st Qu.:-74.00   1st Qu.: 650.0  
##  Mode  :character             Median :40.73   Median :-73.99   Median :1000.0  
##                               Mean   :40.73   Mean   :-73.98   Mean   : 902.3  
##                               3rd Qu.:40.76   3rd Qu.:-73.97   3rd Qu.:1125.0  
##                               Max.   :40.81   Max.   :-73.72   Max.   :1600.0  
##                                                                NA's   :1537    
##     price           cleaning_fee       extra_people       minimum_nights  
##  Length:1564        Length:1564        Length:1564        Min.   :  1.00  
##  Class :character   Class :character   Class :character   1st Qu.:  2.00  
##  Mode  :character   Mode  :character   Mode  :character   Median :  3.00  
##                                                           Mean   : 10.13  
##                                                           3rd Qu.:  7.00  
##                                                           Max.   :365.00  
##                                                                           
##  maximum_nights     number_of_reviews review_scores_rating    X2017.06      
##  Min.   :       1   Min.   :  0.00    Min.   : 20.00       Min.   : 327700  
##  1st Qu.:      30   1st Qu.:  1.00    1st Qu.: 92.00       1st Qu.:1302300  
##  Median :    1125   Median :  4.00    Median : 96.00       Median :1712900  
##  Mean   :   13471   Mean   : 19.79    Mean   : 94.14       Mean   :1791086  
##  3rd Qu.:    1125   3rd Qu.: 17.00    3rd Qu.:100.00       3rd Qu.:2147000  
##  Max.   :20000000   Max.   :403.00    Max.   :100.00       Max.   :3316500  
##                                       NA's   :387
#preparing th price data to be ready for numeric calculations

mergedatafilclean <- mergedatafil

mergedatafilclean$price <- (gsub("\\$","",mergedatafilclean$price))
mergedatafilclean$price <- (gsub("\\,","",mergedatafilclean$price))

mergedatafilclean$cleaning_fee <- (gsub("\\$","",mergedatafilclean$cleaning_fee))
mergedatafilclean$cleaning_fee <- (gsub("\\,","",mergedatafilclean$cleaning_fee))

mergedatafilclean$extra_people <- (gsub("\\$","",mergedatafilclean$extra_people))
mergedatafilclean$extra_people <- (gsub("\\,","",mergedatafilclean$extra_people))

mergedatafilclean$cleaning_fee <- (gsub("\\.00","",mergedatafilclean$cleaning_fee))
mergedatafilclean$extra_people <- (gsub("\\.00","",mergedatafilclean$extra_people))

mergedatafilclean$price <- as.numeric(mergedatafilclean$price)
mergedatafilclean$cleaning_fee <- as.numeric(mergedatafilclean$cleaning_fee)
mergedatafilclean$extra_people <- as.numeric(mergedatafilclean$extra_people)
#filling the missing data with median if appropriate

mergedatafilclean$cleaning_fee[is.na(mergedatafilclean$cleaning_fee)]<- median(mergedatafilclean$cleaning_fee , na.rm = TRUE)

mergedatafilclean$extra_people[is.na(mergedatafilclean$extra_people)]<- median(mergedatafilclean$extra_people , na.rm = TRUE)

mergedatafilclean$square_feet[mergedatafilclean$square_feet == 0] <- NA
mergedatafilclean$square_feet[is.na(mergedatafilclean$square_feet)]<- median(mergedatafilclean$square_feet , na.rm = TRUE)
#displaying and removing the extreme values from price, cleaningfee and extrapeople 

k = boxplot(mergedatafilclean$price, range = 4)

extremes <- which(mergedatafilclean$price %in% k$out)

mergedatafilclean <- mergedatafilclean[-c(extremes),]


q = boxplot(mergedatafilclean$cleaning_fee, range = 4)

extremes1 <- which(mergedatafilclean$cleaning_fee %in% q$out)

mergedatafilclean <- mergedatafilclean[-c(extremes1),]


j = boxplot(mergedatafilclean$extra_people, range = 4)

extremes2 <- which(mergedatafilclean$extra_people %in% j$out)

mergedatafilclean <- mergedatafilclean[-c(extremes2),]
#displaying the percentage of missing variables in the data before Analysis
gg_miss_var(mergedatafilclean , show_pct = TRUE) + labs(y = "Percentage")

#creating total anuual income to show amount of money made on each property in an year

mergedatafilclean$totalannualincome <- mergedatafilclean$price * (0.75 * 365) + mergedatafilclean$cleaning_fee * (0.40 * 365)+ mergedatafilclean$extra_people*(0.2 * 365)

#creating price per square feet value column to display the value of each square feet in each locality

mergedatafilclean$pricepersqrft<- mergedatafilclean$X2017.06/mergedatafilclean$square_feet

#calculating the years it takes to break even the amount spent buying the property

mergedatafilclean$Yearstostartprofiting <- mergedatafilclean$X2017.06/mergedatafilclean$totalannualincome

#calculating the amount of made in 10 years by reducing the total revenue made in 10 years by the total spent on property

mergedatafilclean$revenue_in_ten_years <-  -(mergedatafilclean$X2017.06) + (10 * ((mergedatafilclean$price * (0.75 * 365) )+(mergedatafilclean$cleaning_fee * (0.40 * 365))+ (mergedatafilclean$extra_people*(0.2 * 365))))

#loading the revenue data to final data set for visualisations 

FinalDataset <- mergedatafilclean

#for viewing the final data set

view(FinalDataset)

#summary of final data set

summary(FinalDataset)
##    zipcode             street          neighbourhood_cleansed
##  Length:1526        Length:1526        Length:1526           
##  Class :character   Class :character   Class :character      
##  Mode  :character   Mode  :character   Mode  :character      
##                                                              
##                                                              
##                                                              
##                                                              
##  neighbourhood_group_cleansed    latitude       longitude       square_feet    
##  Length:1526                  Min.   :40.52   Min.   :-74.21   Min.   :   3.0  
##  Class :character             1st Qu.:40.68   1st Qu.:-74.00   1st Qu.:1000.0  
##  Mode  :character             Median :40.73   Median :-73.99   Median :1000.0  
##                               Mean   :40.73   Mean   :-73.98   Mean   : 998.6  
##                               3rd Qu.:40.76   3rd Qu.:-73.97   3rd Qu.:1000.0  
##                               Max.   :40.81   Max.   :-73.72   Max.   :1600.0  
##                                                                                
##      price        cleaning_fee    extra_people    minimum_nights 
##  Min.   : 50.0   Min.   :  0.0   Min.   :  0.00   Min.   :  1.0  
##  1st Qu.:162.0   1st Qu.: 75.0   1st Qu.:  0.00   1st Qu.:  2.0  
##  Median :225.0   Median :100.0   Median :  0.00   Median :  3.0  
##  Mean   :257.5   Mean   :107.4   Mean   : 14.93   Mean   : 10.2  
##  3rd Qu.:300.0   3rd Qu.:130.0   3rd Qu.: 25.00   3rd Qu.:  7.0  
##  Max.   :950.0   Max.   :350.0   Max.   :125.00   Max.   :365.0  
##                                                                  
##  maximum_nights     number_of_reviews review_scores_rating    X2017.06      
##  Min.   :       1   Min.   :  0.00    Min.   : 20.00       Min.   : 327700  
##  1st Qu.:      30   1st Qu.:  1.00    1st Qu.: 92.00       1st Qu.:1302300  
##  Median :    1125   Median :  4.00    Median : 96.00       Median :1712900  
##  Mean   :   13786   Mean   : 20.04    Mean   : 94.08       Mean   :1780431  
##  3rd Qu.:    1125   3rd Qu.: 17.00    3rd Qu.:100.00       3rd Qu.:2147000  
##  Max.   :20000000   Max.   :403.00    Max.   :100.00       Max.   :3316500  
##                                       NA's   :368                           
##  totalannualincome pricepersqrft      Yearstostartprofiting
##  Min.   : 15148    Min.   :   327.7   Min.   :  4.604      
##  1st Qu.: 58400    1st Qu.:  1302.3   1st Qu.: 15.450      
##  Median : 77928    Median :  1712.9   Median : 21.169      
##  Mean   : 87254    Mean   :  2022.6   Mean   : 23.410      
##  3rd Qu.:104641    3rd Qu.:  2147.0   3rd Qu.: 27.810      
##  Max.   :281963    Max.   :356933.3   Max.   :122.444      
##                                                            
##  revenue_in_ten_years
##  Min.   :-2978875    
##  1st Qu.:-1284356    
##  Median : -823225    
##  Mean   : -907890    
##  3rd Qu.: -502313    
##  Max.   : 1315625    
## 
#To display final data

kable(FinalDataset) %>% 
  kable_styling(bootstrap_options = c("striped", "hover", "responsive")) %>% 
  scroll_box(width = "100%", height = "500px")
zipcode street neighbourhood_cleansed neighbourhood_group_cleansed latitude longitude square_feet price cleaning_fee extra_people minimum_nights maximum_nights number_of_reviews review_scores_rating X2017.06 totalannualincome pricepersqrft Yearstostartprofiting revenue_in_ten_years
1 10003 New York, NY, United States East Village Manhattan 40.72342 -73.98871 1000 250 85 0 2 1125 1 100 2147000 80847.50 2147.0000 26.556171 -1338525.0
2 10003 New York, NY, United States East Village Manhattan 40.73065 -73.98523 1000 88 100 0 2 1125 18 93 2147000 38690.00 2147.0000 55.492375 -1760100.0
3 10003 New York, NY, United States NoHo Manhattan 40.72909 -73.99125 1000 200 50 0 2 14 81 95 2147000 62050.00 2147.0000 34.601128 -1526500.0
4 10003 New York, NY, United States Gramercy Manhattan 40.73524 -73.98441 1000 239 90 0 5 1125 2 80 2147000 78566.25 2147.0000 27.327256 -1361337.5
5 10003 New York, NY, United States East Village Manhattan 40.72950 -73.98623 1000 230 60 60 2 1125 1 NA 2147000 76102.50 2147.0000 28.211951 -1385975.0
6 10003 New York, NY, United States East Village Manhattan 40.72571 -73.98789 1000 250 75 0 2 20 8 88 2147000 79387.50 2147.0000 27.044560 -1353125.0
7 10003 New York, NY, United States Gramercy Manhattan 40.73287 -73.98585 1000 180 50 0 1 1125 1 100 2147000 56575.00 2147.0000 37.949624 -1581250.0
8 10003 New York, NY, United States Gramercy Manhattan 40.73682 -73.98336 1000 195 75 0 5 10 1 NA 2147000 64331.25 2147.0000 33.374138 -1503687.5
9 10003 New York, NY, United States East Village Manhattan 40.73160 -73.98543 1000 297 50 0 1 1125 9 91 2147000 88603.75 2147.0000 24.231480 -1260962.5
10 10003 New York, NY, United States East Village Manhattan 40.72627 -73.98543 1000 207 100 0 30 1125 0 NA 2147000 71266.25 2147.0000 30.126462 -1434337.5
11 10003 New York, NY, United States Gramercy Manhattan 40.73476 -73.98452 1000 400 120 25 2 8 105 94 2147000 128845.00 2147.0000 16.663433 -858550.0
12 10003 New York, NY, United States East Village Manhattan 40.72399 -73.98869 1000 180 100 0 2 1125 2 90 2147000 63875.00 2147.0000 33.612524 -1508250.0
13 10003 New York, NY, United States Gramercy Manhattan 40.73782 -73.98547 1000 218 120 0 1 1125 6 93 2147000 77197.50 2147.0000 27.811781 -1375025.0
14 10003 New York, NY, United States East Village Manhattan 40.72567 -73.98635 1000 225 95 20 3 1125 0 NA 2147000 76923.75 2147.0000 27.910756 -1377762.5
15 10003 New York, NY, United States Gramercy Manhattan 40.73563 -73.98801 1000 410 120 0 30 1125 3 100 2147000 129757.50 2147.0000 16.546250 -849425.0
16 10003 New York, NY, United States East Village Manhattan 40.72429 -73.98784 1000 80 50 0 90 180 0 NA 2147000 29200.00 2147.0000 73.527397 -1855000.0
17 10003 New York, NY, United States East Village Manhattan 40.72366 -73.99030 1000 299 100 0 2 360 11 95 2147000 96451.25 2147.0000 22.259950 -1182487.5
18 10003 New York, NY, United States Gramercy Manhattan 40.73337 -73.98524 1000 200 150 0 30 365 5 75 2147000 76650.00 2147.0000 28.010437 -1380500.0
19 10003 New York, NY, United States East Village Manhattan 40.72935 -73.98465 1000 200 50 30 2 1125 6 90 2147000 64240.00 2147.0000 33.421544 -1504600.0
20 10003 New York, NY, United States East Village Manhattan 40.72447 -73.98821 1000 255 125 30 3 1125 6 100 2147000 90246.25 2147.0000 23.790462 -1244537.5
21 10003 New York, NY, United States East Village Manhattan 40.73219 -73.98503 1000 220 120 50 4 1125 9 96 2147000 81395.00 2147.0000 26.377542 -1333050.0
22 10003 New York, NY, United States East Village Manhattan 40.72767 -73.98825 1000 850 100 0 1 1125 0 NA 2147000 247287.50 2147.0000 8.682202 325875.0
23 10003 NY, NY, United States East Village Manhattan 40.73003 -73.98576 1000 300 100 50 2 1125 17 97 2147000 100375.00 2147.0000 21.389788 -1143250.0
24 10003 New York, NY, United States East Village Manhattan 40.72448 -73.99247 1000 400 200 0 3 1125 3 100 2147000 138700.00 2147.0000 15.479452 -760000.0
25 10003 New York, NY, United States East Village Manhattan 40.73256 -73.98558 1000 170 150 0 30 365 11 91 2147000 68437.50 2147.0000 31.371689 -1462625.0
26 10003 New York, NY, United States East Village Manhattan 40.72828 -73.98602 1000 425 160 35 2 1125 95 95 2147000 142258.75 2147.0000 15.092218 -724412.5
27 10003 New York, NY, United States Gramercy Manhattan 40.73521 -73.98147 1000 155 95 0 20 1125 25 98 2147000 56301.25 2147.0000 38.134144 -1583987.5
28 10003 New York, NY, United States Gramercy Manhattan 40.73268 -73.98399 1000 199 90 25 1 1125 26 96 2147000 69441.25 2147.0000 30.918222 -1452587.5
29 10003 New York, NY, United States Gramercy Manhattan 40.73388 -73.98311 1000 299 89 43 2 1125 11 85 2147000 97984.25 2147.0000 21.911685 -1167157.5
30 10003 New York, NY, United States East Village Manhattan 40.73034 -73.98725 1000 197 87 47 1 1125 0 NA 2147000 70061.75 2147.0000 30.644396 -1446382.5
31 10003 New York, NY, United States Gramercy Manhattan 40.73327 -73.98503 1000 200 125 20 3 4 13 80 2147000 74460.00 2147.0000 28.834273 -1402400.0
32 10003 New York, NY, United States NoHo Manhattan 40.72943 -73.99277 1000 495 135 20 4 1125 7 77 2147000 156676.25 2147.0000 13.703417 -580237.5
33 10003 New York, NY, United States East Village Manhattan 40.73061 -73.98409 1000 215 100 0 2 20 0 NA 2147000 73456.25 2147.0000 29.228282 -1412437.5
34 10003 New York, NY, United States East Village Manhattan 40.73161 -73.98438 1000 220 75 0 4 1125 1 NA 2147000 71175.00 2147.0000 30.165086 -1435250.0
35 10003 New York, NY, United States East Village Manhattan 40.72789 -73.98756 1000 350 100 0 3 1125 0 NA 2147000 110412.50 2147.0000 19.445262 -1042875.0
36 10003 New York, NY, United States East Village Manhattan 40.72577 -73.98745 1000 249 85 25 5 365 166 85 2147000 82398.75 2147.0000 26.056220 -1323012.5
37 10003 New York, NY, United States Gramercy Manhattan 40.73670 -73.98985 1000 499 150 25 5 1125 28 94 2147000 160326.25 2147.0000 13.391444 -543737.5
38 10003 New York, NY, United States Gramercy Manhattan 40.73358 -73.98443 1000 325 99 45 2 1125 0 NA 2147000 106707.75 2147.0000 20.120376 -1079922.5
39 10003 New York, NY, United States East Village Manhattan 40.72646 -73.98686 1000 260 100 0 2 65 2 100 2147000 85775.00 2147.0000 25.030603 -1289250.0
40 10003 New York, NY, United States NoHo Manhattan 40.72896 -73.99201 1000 199 95 15 2 1125 3 87 2147000 69441.25 2147.0000 30.918222 -1452587.5
41 10003 New York, NY, United States East Village Manhattan 40.72710 -73.99092 1000 195 150 0 2 1125 0 NA 2147000 75281.25 2147.0000 28.519718 -1394187.5
42 10003 New York, NY, United States East Village Manhattan 40.72577 -73.99169 1000 118 50 0 10 18 1 80 2147000 39602.50 2147.0000 54.213749 -1750975.0
43 10003 New York, NY, United States Civic Center Manhattan 40.71395 -74.00545 1000 199 100 0 6 1125 0 NA 2147000 69076.25 2147.0000 31.081595 -1456237.5
44 10003 New York, NY, United States East Village Manhattan 40.73036 -73.98673 1000 250 95 65 7 400 20 93 2147000 87052.50 2147.0000 24.663278 -1276475.0
45 10003 New York, NY, United States East Village Manhattan 40.73117 -73.98593 1000 325 100 0 1 1125 0 NA 2147000 103568.75 2147.0000 20.730191 -1111312.5
46 10003 New York, NY, United States East Village Manhattan 40.73160 -73.98507 1000 132 100 0 7 16 0 NA 2147000 50735.00 2147.0000 42.317926 -1639650.0
47 10003 New York, NY, United States East Village Manhattan 40.72328 -73.98926 1000 260 75 60 1 1125 299 90 2147000 86505.00 2147.0000 24.819375 -1281950.0
48 10003 New York, NY, United States East Village Manhattan 40.72784 -73.98883 1000 250 110 25 2 60 99 97 2147000 86322.50 2147.0000 24.871847 -1283775.0
49 10003 New York, NY, United States East Village Manhattan 40.72394 -73.98872 1000 165 85 0 2 8 3 100 2147000 57578.75 2147.0000 37.288062 -1571212.5
50 10003 New York, NY, United States East Village Manhattan 40.73029 -73.98725 1000 95 25 0 4 1125 9 91 2147000 29656.25 2147.0000 72.396207 -1850437.5
51 10003 New York, NY, United States East Village Manhattan 40.73418 -73.98930 1000 250 60 30 1 1125 15 93 2147000 79387.50 2147.0000 27.044560 -1353125.0
52 10003 New York, NY, United States East Village Manhattan 40.72677 -73.99110 1000 500 250 50 4 1123 6 97 2147000 177025.00 2147.0000 12.128231 -376750.0
53 10003 New York, NY, United States Gramercy Manhattan 40.73265 -73.98435 1000 250 125 30 2 1125 4 100 2147000 88877.50 2147.0000 24.156845 -1258225.0
54 10003 New York, NY, United States NoHo Manhattan 40.72847 -73.99302 1000 700 120 0 2 1125 31 97 2147000 209145.00 2147.0000 10.265605 -55550.0
55 10003 New York, NY, United States East Village Manhattan 40.72852 -73.98705 1000 150 100 0 1 1125 0 NA 2147000 55662.50 2147.0000 38.571749 -1590375.0
56 10003 New York, NY, United States Chelsea Manhattan 40.73857 -73.99256 1000 800 100 0 15 30 0 NA 2147000 233600.00 2147.0000 9.190925 189000.0
57 10003 New York, NY, United States East Village Manhattan 40.72607 -73.98625 1000 190 70 20 2 14 2 100 2147000 63692.50 2147.0000 33.708835 -1510075.0
58 10003 New York, NY, United States East Village Manhattan 40.73177 -73.98598 1000 180 75 0 5 20 0 NA 2147000 60225.00 2147.0000 35.649647 -1544750.0
59 10003 New York, NY, United States East Village Manhattan 40.73087 -73.98631 1000 255 150 0 30 1125 0 NA 2147000 91706.25 2147.0000 23.411709 -1229937.5
60 10003 New York, NY, United States East Village Manhattan 40.72756 -73.98588 1000 280 50 0 4 1125 2 80 2147000 83950.00 2147.0000 25.574747 -1307500.0
61 10003 New York, NY, United States Gramercy Manhattan 40.73285 -73.98245 1000 400 100 50 2 365 40 96 2147000 127750.00 2147.0000 16.806262 -869500.0
62 10003 New York, NY, United States Gramercy Manhattan 40.73564 -73.98229 1000 239 90 0 5 30 2 90 2147000 78566.25 2147.0000 27.327256 -1361337.5
64 10003 New York, NY, United States East Village Manhattan 40.73296 -73.98884 1000 275 50 0 2 30 0 NA 2147000 82581.25 2147.0000 25.998638 -1321187.5
65 10003 New York, NY, United States East Village Manhattan 40.72626 -73.98784 1000 310 75 25 2 13 78 94 2147000 97637.50 2147.0000 21.989502 -1170625.0
66 10003 New York, NY, United States East Village Manhattan 40.72524 -73.98820 1000 180 60 0 4 1125 5 100 2147000 58035.00 2147.0000 36.994917 -1566650.0
67 10003 New York, NY, United States Chelsea Manhattan 40.73726 -73.99280 1000 230 60 15 5 1125 5 100 2147000 72817.50 2147.0000 29.484671 -1418825.0
68 10003 New York, NY, United States East Village Manhattan 40.72464 -73.98861 1000 225 75 20 4 16 7 97 2147000 74003.75 2147.0000 29.012043 -1406962.5
69 10003 New York, NY, United States Gramercy Manhattan 40.73227 -73.98451 1000 109 65 10 5 1125 5 100 2147000 40058.75 2147.0000 53.596280 -1746412.5
70 10003 New York, NY, United States Greenwich Village Manhattan 40.72839 -73.99437 1000 495 135 20 6 1125 12 87 2147000 156676.25 2147.0000 13.703417 -580237.5
72 10003 New York, NY, United States Gramercy Manhattan 40.73536 -73.98393 1000 209 150 35 30 1100 27 92 2147000 81668.75 2147.0000 26.289125 -1330312.5
73 10003 New York, NY, United States East Village Manhattan 40.72887 -73.98633 1000 219 50 0 5 1125 1 100 2147000 67251.25 2147.0000 31.925057 -1474487.5
74 10003 New York, NY, United States East Village Manhattan 40.72868 -73.98635 1000 90 50 10 15 1125 1 NA 2147000 32667.50 2147.0000 65.722813 -1820325.0
75 10003 New York, NY, United States East Village Manhattan 40.73167 -73.98581 1000 140 100 0 7 38 0 NA 2147000 52925.00 2147.0000 40.566840 -1617750.0
76 10003 New York, NY, United States NoHo Manhattan 40.72569 -73.99227 1000 455 225 50 30 1125 93 95 2147000 161056.25 2147.0000 13.330746 -536437.5
77 10003 New York, NY, United States NoHo Manhattan 40.72811 -73.99381 1000 525 120 15 6 1125 5 64 2147000 162333.75 2147.0000 13.225839 -523662.5
78 10003 New York, NY, United States East Village Manhattan 40.72537 -73.99054 1000 250 50 0 2 1125 0 NA 2147000 75737.50 2147.0000 28.347912 -1389625.0
79 10003 New York, NY, United States East Village Manhattan 40.72891 -73.98868 1000 300 100 0 2 1125 22 95 2147000 96725.00 2147.0000 22.196950 -1179750.0
80 10003 New York, NY, United States East Village Manhattan 40.72576 -73.98691 1000 200 25 10 2 1125 11 98 2147000 59130.00 2147.0000 36.309826 -1555700.0
81 10003 New York, NY, United States East Village Manhattan 40.72899 -73.97792 1000 549 150 50 30 365 58 94 2147000 175838.75 2147.0000 12.210050 -388612.5
82 10003 New York, NY, United States East Village Manhattan 40.72915 -73.98866 1000 275 75 0 1 1125 1 NA 2147000 86231.25 2147.0000 24.898166 -1284687.5
83 10003 New York, NY, United States East Village Manhattan 40.72814 -73.98665 1000 250 50 0 1 1125 1 80 2147000 75737.50 2147.0000 28.347912 -1389625.0
84 10003 New York, NY, United States East Village Manhattan 40.72927 -73.99039 1000 300 150 50 30 365 2 90 2147000 107675.00 2147.0000 19.939633 -1070250.0
85 10003 New York, NY, United States Lower East Side Manhattan 40.72235 -73.98911 1000 313 83 38 1 1125 22 92 2147000 100575.75 2147.0000 21.347094 -1141242.5
86 10003 New York, NY, United States East Village Manhattan 40.73268 -73.98689 1000 195 150 0 30 365 7 84 2147000 75281.25 2147.0000 28.519718 -1394187.5
87 10003 New York, NY, United States East Village Manhattan 40.72493 -73.99061 1000 308 73 33 1 1125 39 93 2147000 97382.00 2147.0000 22.047196 -1173180.0
88 10003 New York, NY, United States Gramercy Manhattan 40.73598 -73.98161 1000 125 100 0 1 1125 19 88 2147000 48818.75 2147.0000 43.979004 -1658812.5
89 10003 New York, NY, United States NoHo Manhattan 40.72888 -73.99199 1000 299 120 0 30 1125 1 100 2147000 99371.25 2147.0000 21.605847 -1153287.5
90 10003 New York, NY, United States Gramercy Manhattan 40.73512 -73.98614 1000 235 200 0 30 365 0 NA 2147000 93531.25 2147.0000 22.954895 -1211687.5
91 10003 New York, NY, United States East Village Manhattan 40.73015 -73.98447 1000 350 80 0 3 1125 3 80 2147000 107492.50 2147.0000 19.973486 -1072075.0
92 10003 New York, NY, United States East Village Manhattan 40.73025 -73.98610 1000 349 60 0 5 1125 0 NA 2147000 104298.75 2147.0000 20.585098 -1104012.5
93 10003 New York, NY, United States East Village Manhattan 40.73111 -73.98675 1000 250 0 0 4 1125 2 100 2147000 68437.50 2147.0000 31.371689 -1462625.0
94 10003 New York, NY, United States Gramercy Manhattan 40.73170 -73.98330 1000 100 50 0 3 11 9 93 2147000 34675.00 2147.0000 61.917808 -1800250.0
96 10003 New York, NY, United States East Village Manhattan 40.72895 -73.98789 1000 200 150 50 1 1125 1 100 2147000 80300.00 2147.0000 26.737235 -1344000.0
97 10003 New York, NY, United States East Village Manhattan 40.72939 -73.98857 1100 189 115 30 2 28 403 86 2147000 70718.75 1951.8182 30.359700 -1439812.5
98 10003 New York, NY, United States East Village Manhattan 40.72811 -73.98824 1000 285 50 12 1 1125 0 NA 2147000 86194.75 2147.0000 24.908710 -1285052.5
99 10003 New York, NY, United States East Village Manhattan 40.73123 -73.98896 1000 400 150 50 2 1125 0 NA 2147000 135050.00 2147.0000 15.897816 -796500.0
100 10003 New York, NY, United States East Village Manhattan 40.72877 -73.98848 1000 200 100 25 1 1125 13 92 2147000 71175.00 2147.0000 30.165086 -1435250.0
101 10003 New York, NY, United States East Village Manhattan 40.72705 -73.98787 1000 275 100 25 2 1125 70 89 2147000 91706.25 2147.0000 23.411709 -1229937.5
102 10003 New York, NY, United States East Village Manhattan 40.73223 -73.98658 1000 253 200 0 30 1125 0 NA 2147000 98458.75 2147.0000 21.806086 -1162412.5
103 10003 New York, NY, United States East Village Manhattan 40.72977 -73.98841 1000 350 80 20 3 1125 85 95 2147000 108952.50 2147.0000 19.705835 -1057475.0
104 10003 New York, NY, United States East Village Manhattan 40.72627 -73.99145 1000 200 85 0 3 14 27 99 2147000 67160.00 2147.0000 31.968434 -1475400.0
105 10003 New York, NY, United States NoHo Manhattan 40.72617 -73.99218 1000 250 35 50 2 1125 2 100 2147000 77197.50 2147.0000 27.811781 -1375025.0
106 10003 New York, NY, United States NoHo Manhattan 40.72833 -73.99331 1000 495 130 20 6 1125 1 NA 2147000 155946.25 2147.0000 13.767564 -587537.5
107 10003 New York, NY, United States East Village Manhattan 40.72948 -73.98885 1000 450 80 0 1 1125 1 100 2147000 134867.50 2147.0000 15.919328 -798325.0
108 10003 New York, NY, United States Gramercy Manhattan 40.73502 -73.98612 1000 280 100 0 3 1125 0 NA 2147000 91250.00 2147.0000 23.528767 -1234500.0
109 10003 New York, NY, United States NoHo Manhattan 40.72895 -73.99340 1000 499 200 0 30 364 0 NA 2147000 165801.25 2147.0000 12.949239 -488987.5
110 10003 New York, NY, United States East Village Manhattan 40.72840 -73.98673 1000 850 200 0 3 15 0 NA 2147000 261887.50 2147.0000 8.198177 471875.0
111 10003 New York, NY, United States East Village Manhattan 40.72514 -73.98960 1000 300 120 0 1 1125 1 100 2147000 99645.00 2147.0000 21.546490 -1150550.0
112 10003 New York, NY, United States East Village Manhattan 40.72862 -73.98885 1000 142 100 25 1 1125 214 92 2147000 55297.50 2147.0000 38.826348 -1594025.0
113 10003 New York, NY, United States East Village Manhattan 40.72603 -73.98751 1000 151 95 25 2 28 214 84 2147000 57031.25 2147.0000 37.646027 -1576687.5
114 10003 New York, NY, United States East Village Manhattan 40.72545 -73.98802 1000 299 100 49 1 1125 69 86 2147000 100028.25 2147.0000 21.463936 -1146717.5
115 10003 New York, NY, United States East Village Manhattan 40.73045 -73.98392 1000 199 0 25 4 14 8 90 2147000 56301.25 2147.0000 38.134144 -1583987.5
116 10003 New York, NY, United States East Village Manhattan 40.73125 -73.98675 1000 480 80 40 3 60 2 90 2147000 146000.00 2147.0000 14.705479 -687000.0
117 10003 New York, NY, United States Greenwich Village Manhattan 40.73455 -73.99171 1000 245 200 0 30 1125 0 NA 2147000 96268.75 2147.0000 22.302149 -1184312.5
118 10003 New York, NY, United States East Village Manhattan 40.73345 -73.98956 1000 495 175 100 2 1125 66 97 2147000 168356.25 2147.0000 12.752719 -463437.5
119 10003 New York, NY, United States East Village Manhattan 40.73022 -73.98893 1000 198 0 0 30 50 5 100 2147000 54202.50 2147.0000 39.610719 -1604975.0
120 10003 New York, NY, United States East Village Manhattan 40.73029 -73.98836 1000 62 40 0 4 1125 4 100 2147000 22812.50 2147.0000 94.115069 -1918875.0
121 10003 New York, NY, United States East Village Manhattan 40.72783 -73.98015 1000 250 160 28 5 1125 3 100 2147000 93841.50 2147.0000 22.879003 -1208585.0
123 10003 New York, NY, United States East Village Manhattan 40.73055 -73.98928 1000 260 120 0 3 1125 24 96 2147000 88695.00 2147.0000 24.206550 -1260050.0
124 10003 New York, NY, United States East Village Manhattan 40.72877 -73.98938 1000 140 100 0 31 120 0 NA 2147000 52925.00 2147.0000 40.566840 -1617750.0
125 10003 New York, NY, United States Gramercy Manhattan 40.73735 -73.98425 1000 250 100 0 2 1125 1 100 2147000 83037.50 2147.0000 25.855788 -1316625.0
126 10003 New York, NY, United States Gramercy Manhattan 40.73338 -73.98315 1000 499 175 0 4 1125 41 99 2147000 162151.25 2147.0000 13.240724 -525487.5
127 10003 New York, NY, United States Greenwich Village Manhattan 40.72930 -73.99479 1000 499 100 0 4 1125 0 NA 2147000 151201.25 2147.0000 14.199618 -634987.5
128 10003 New York, NY, United States East Village Manhattan 40.73218 -73.98815 1000 285 150 0 30 1125 0 NA 2147000 99918.75 2147.0000 21.487459 -1147812.5
129 10003 New York, NY, United States East Village Manhattan 40.72571 -73.98833 1000 150 100 0 1 1125 3 NA 2147000 55662.50 2147.0000 38.571749 -1590375.0
130 10003 New York, NY, United States East Village Manhattan 40.73016 -73.98643 800 240 50 15 5 365 86 96 2147000 74095.00 2683.7500 28.976314 -1406050.0
131 10003 New York, NY, United States East Village Manhattan 40.73235 -73.98646 1000 499 150 20 30 360 11 96 2147000 159961.25 2147.0000 13.422001 -547387.5
132 10003 New York, NY, United States East Village Manhattan 40.72908 -73.98912 1000 300 100 0 6 30 1 100 2147000 96725.00 2147.0000 22.196950 -1179750.0
133 10003 New York, NY, United States Gramercy Manhattan 40.73294 -73.98282 1000 245 200 25 5 1125 18 96 2147000 98093.75 2147.0000 21.887225 -1166062.5
134 10003 New York, NY, United States East Village Manhattan 40.73245 -73.98535 1000 300 175 50 30 100 0 NA 2147000 111325.00 2147.0000 19.285875 -1033750.0
135 10003 New York, NY, United States Gramercy Manhattan 40.73258 -73.98190 1000 300 100 0 10 21 0 NA 2147000 96725.00 2147.0000 22.196950 -1179750.0
136 10003 New York, NY, United States East Village Manhattan 40.73165 -73.98715 1000 290 95 0 7 120 90 89 2147000 93257.50 2147.0000 23.022277 -1214425.0
137 10011 New York, NY, United States Chelsea Manhattan 40.74371 -74.00244 1000 400 100 50 3 4 0 NA 2480400 127750.00 2480.4000 19.416047 -1202900.0
138 10011 New York, NY, United States Greenwich Village Manhattan 40.73359 -73.99772 1000 250 125 20 3 1125 2 100 2480400 88147.50 2480.4000 28.139198 -1598925.0
139 10011 New York, NY, United States West Village Manhattan 40.73563 -73.99846 1000 500 150 0 4 21 1 100 2480400 158775.00 2480.4000 15.622107 -892650.0
140 10011 New York, NY, United States Chelsea Manhattan 40.74350 -74.00119 1000 289 100 0 2 1125 128 90 2480400 93713.75 2480.4000 26.467834 -1543262.5
141 10011 New York, NY, United States Chelsea Manhattan 40.73938 -74.00002 1000 350 80 0 3 1125 6 93 2480400 107492.50 2480.4000 23.075098 -1405475.0
142 10011 New York, NY, United States Chelsea Manhattan 40.74123 -74.00548 1000 600 230 40 2 1125 44 93 2480400 200750.00 2480.4000 12.355666 -472900.0
143 10011 New York, NY, United States Chelsea Manhattan 40.74704 -74.00239 1000 105 60 0 1 28 1 100 2480400 37503.75 2480.4000 66.137386 -2105362.5
144 10011 New York, NY, United States Greenwich Village Manhattan 40.73539 -73.99547 1000 485 150 0 5 1124 45 95 2480400 154668.75 2480.4000 16.036853 -933712.5
145 10011 New York, NY, United States Chelsea Manhattan 40.74441 -74.00385 1000 350 350 0 7 360 4 90 2480400 146912.50 2480.4000 16.883519 -1011275.0
146 10011 New York, NY, United States Greenwich Village Manhattan 40.73450 -73.99747 1000 395 25 20 2 14 0 NA 2480400 113241.25 2480.4000 21.903679 -1347987.5
147 10011 New York, NY, United States Greenwich Village Manhattan 40.73325 -73.99971 1000 350 100 25 2 15 34 95 2480400 112237.50 2480.4000 22.099566 -1358025.0
148 10011 New York, NY, United States Chelsea Manhattan 40.74283 -73.99843 1000 245 120 25 5 300 48 96 2480400 86413.75 2480.4000 28.703765 -1616262.5
149 10011 New York, NY, United States Chelsea Manhattan 40.74441 -73.99915 1000 250 130 50 4 120 11 98 2480400 91067.50 2480.4000 27.236940 -1569725.0
150 10011 New York, NY, United States Chelsea Manhattan 40.74221 -73.99822 1000 490 150 20 3 1125 1 100 2480400 157497.50 2480.4000 15.748821 -905425.0
151 10011 New York, NY, United States Chelsea Manhattan 40.74889 -74.00132 1000 320 99 0 3 1125 40 94 2480400 102054.00 2480.4000 24.304780 -1459860.0
152 10011 New York, NY, United States Chelsea Manhattan 40.74451 -73.99939 1000 421 200 0 30 1125 0 NA 2480400 144448.75 2480.4000 17.171488 -1035912.5
153 10011 New York, NY, United States Chelsea Manhattan 40.74722 -74.00466 1000 300 50 0 3 1125 11 96 2480400 89425.00 2480.4000 27.737210 -1586150.0
154 10011 New York, NY, United States Chelsea Manhattan 40.74244 -74.00274 1000 300 125 25 2 1125 13 83 2480400 102200.00 2480.4000 24.270059 -1458400.0
155 10011 New York, NY, United States Chelsea Manhattan 40.74188 -73.99729 1000 555 295 0 3 29 111 96 2480400 195001.25 2480.4000 12.719919 -530387.5
156 10011 New York, NY, United States Chelsea Manhattan 40.74139 -74.00050 1000 220 100 0 4 15 0 NA 2480400 74825.00 2480.4000 33.149349 -1732150.0
157 10011 New York, NY, United States Chelsea Manhattan 40.74318 -73.99987 1000 444 170 50 1 1125 2 100 2480400 150015.00 2480.4000 16.534347 -980250.0
158 10011 New York, NY, United States Chelsea Manhattan 40.74366 -73.99721 1000 275 100 0 3 10 1 100 2480400 89881.25 2480.4000 27.596412 -1581587.5
159 10011 New York, NY, United States Chelsea Manhattan 40.74436 -74.00729 1000 447 80 0 3 1125 3 60 2480400 134046.25 2480.4000 18.504061 -1139937.5
160 10011 New York, NY, United States Chelsea Manhattan 40.74089 -74.00181 1000 250 100 0 2 365 28 90 2480400 83037.50 2480.4000 29.870842 -1650025.0
161 10011 New York, NY, United States Greenwich Village Manhattan 40.73177 -73.99936 1000 90 100 0 42 60 2 100 2480400 39237.50 2480.4000 63.215037 -2088025.0
162 10011 New York, NY, United States Chelsea Manhattan 40.74315 -73.99591 1000 225 98 0 3 1125 0 NA 2480400 75901.75 2480.4000 32.679088 -1721382.5
163 10011 New York, NY, United States West Village Manhattan 40.73855 -74.00125 1000 577 115 15 2 1125 2 100 2480400 175838.75 2480.4000 14.106106 -722012.5
164 10011 New York, NY, United States Chelsea Manhattan 40.73989 -73.99863 1000 485 100 0 4 1125 1 100 2480400 147368.75 2480.4000 16.831248 -1006712.5
165 10011 New York, NY, United States Chelsea Manhattan 40.74358 -74.00027 1000 500 100 30 2 14 35 92 2480400 153665.00 2480.4000 16.141607 -943750.0
166 10011 New York, NY, United States Chelsea Manhattan 40.74314 -73.99552 1000 250 100 0 2 4 24 98 2480400 83037.50 2480.4000 29.870842 -1650025.0
167 10011 New York, NY, United States Chelsea Manhattan 40.74376 -74.00387 1000 270 85 0 30 1125 195 98 2480400 86322.50 2480.4000 28.734108 -1617175.0
168 10011 New York, NY, United States Chelsea Manhattan 40.74219 -73.99903 1000 599 100 0 5 1125 0 NA 2480400 178576.25 2480.4000 13.889865 -694637.5
169 10011 New York, NY, United States Chelsea Manhattan 40.74618 -74.00392 1000 195 150 0 365 365 10 100 2480400 75281.25 2480.4000 32.948443 -1727587.5
170 10011 New York, NY, United States Chelsea Manhattan 40.74382 -74.00463 1000 250 250 0 30 180 2 100 2480400 104937.50 2480.4000 23.636927 -1431025.0
171 10011 New York, NY, United States Chelsea Manhattan 40.74009 -73.99608 1000 625 125 0 2 1125 10 100 2480400 189343.75 2480.4000 13.099984 -586962.5
172 10011 New York, NY, United States Chelsea Manhattan 40.74025 -74.00066 1000 400 100 0 3 1125 21 90 2480400 124100.00 2480.4000 19.987107 -1239400.0
173 10011 New York, NY, United States Chelsea Manhattan 40.74107 -73.99595 1000 250 85 0 5 25 4 100 2480400 80847.50 2480.4000 30.679984 -1671925.0
174 10011 New York, NY, United States Chelsea Manhattan 40.74023 -73.99994 1000 485 100 0 3 1125 2 100 2480400 147368.75 2480.4000 16.831248 -1006712.5
175 10011 New York, NY, United States Chelsea Manhattan 40.74387 -74.00134 1000 250 100 0 2 1125 3 93 2480400 83037.50 2480.4000 29.870842 -1650025.0
176 10011 New York, NY, United States Chelsea Manhattan 40.74566 -73.99989 1000 365 150 0 6 1125 100 93 2480400 121818.75 2480.4000 20.361398 -1262212.5
177 10011 New York, NY, United States Chelsea Manhattan 40.74214 -73.99912 1000 200 150 0 5 8 0 NA 2480400 76650.00 2480.4000 32.360078 -1713900.0
178 10011 New York, NY, United States Chelsea Manhattan 40.74313 -73.99844 1000 175 100 0 3 1125 2 90 2480400 62506.25 2480.4000 39.682432 -1855337.5
179 10011 New York, NY, United States Chelsea Manhattan 40.74110 -73.99978 1000 325 60 0 1 1125 2 90 2480400 97728.75 2480.4000 25.380454 -1503112.5
180 10011 New York, NY, United States Chelsea Manhattan 40.74130 -74.00429 1000 350 120 35 30 1125 11 95 2480400 115887.50 2480.4000 21.403516 -1321525.0
181 10011 New York, NY, United States Chelsea Manhattan 40.74405 -73.99915 1000 250 125 25 3 1125 164 95 2480400 88512.50 2480.4000 28.023161 -1595275.0
182 10011 New York, NY, United States West Village Manhattan 40.73776 -73.99996 1000 156 120 0 1 1125 8 97 2480400 60225.00 2480.4000 41.185554 -1878150.0
183 10011 New York, NY, United States Chelsea Manhattan 40.74680 -74.00493 1000 175 100 0 1 1125 6 87 2480400 62506.25 2480.4000 39.682432 -1855337.5
184 10011 New York, NY, United States West Village Manhattan 40.74012 -74.00537 1000 50 40 10 2 30 56 95 2480400 20257.50 2480.4000 122.443539 -2277825.0
185 10011 New York, NY, United States West Village Manhattan 40.73649 -73.99927 1000 400 50 0 3 1125 3 100 2480400 116800.00 2480.4000 21.236301 -1312400.0
186 10011 New York, NY, United States West Village Manhattan 40.74049 -74.00527 1000 600 200 50 1 1125 106 93 2480400 197100.00 2480.4000 12.584475 -509400.0
187 10011 New York, NY, United States Greenwich Village Manhattan 40.73365 -73.99727 1000 159 100 0 90 1125 0 NA 2480400 58126.25 2480.4000 42.672631 -1899137.5
188 10011 New York, NY, United States Chelsea Manhattan 40.73734 -73.99327 1000 333 80 0 4 20 4 85 2480400 102838.75 2480.4000 24.119313 -1452012.5
189 10011 New York, NY, United States Chelsea Manhattan 40.73927 -73.99833 1000 220 80 0 1 30 8 98 2480400 71905.00 2480.4000 34.495515 -1761350.0
190 10011 New York, NY, United States West Village Manhattan 40.73670 -74.00105 1000 333 250 0 2 300 0 NA 2480400 127658.75 2480.4000 19.429925 -1203812.5
191 10011 New York, NY, United States Chelsea Manhattan 40.74221 -73.99626 1000 295 80 0 9 1125 2 100 2480400 92436.25 2480.4000 26.833629 -1556037.5
192 10011 New York, NY, United States Greenwich Village Manhattan 40.73444 -73.99761 1000 600 100 0 1 1125 0 NA 2480400 178850.00 2480.4000 13.868605 -691900.0
193 10011 New York, NY, United States Chelsea Manhattan 40.74183 -73.99997 1000 330 100 0 2 1125 124 92 2480400 104937.50 2480.4000 23.636927 -1431025.0
194 10011 New York, NY, United States Greenwich Village Manhattan 40.73393 -73.99820 1000 250 100 0 2 10 0 NA 2480400 83037.50 2480.4000 29.870842 -1650025.0
195 10011 New York, NY, United States Chelsea Manhattan 40.74080 -74.00127 1000 225 25 0 1 1125 0 NA 2480400 65243.75 2480.4000 38.017435 -1827962.5
197 10011 New York, NY, United States Chelsea Manhattan 40.74724 -74.00355 1000 395 80 60 4 10 73 97 2480400 124191.25 2480.4000 19.972422 -1238487.5
198 10011 New York, NY, United States Chelsea Manhattan 40.74441 -74.00765 1000 299 100 0 2 1125 0 NA 2480400 96451.25 2480.4000 25.716618 -1515887.5
199 10011 New York, NY, United States Chelsea Manhattan 40.74187 -74.00622 1000 600 200 0 1 1125 86 94 2480400 193450.00 2480.4000 12.821918 -545900.0
200 10011 New York, NY, United States Chelsea Manhattan 40.74119 -73.99536 1000 425 200 0 30 365 0 NA 2480400 145543.75 2480.4000 17.042298 -1024962.5
201 10011 New York, NY, United States Chelsea Manhattan 40.74117 -73.99951 1000 300 260 0 4 1125 0 NA 2480400 120085.00 2480.4000 20.655369 -1279550.0
202 10011 New York, NY, United States Chelsea Manhattan 40.74312 -73.99953 1000 450 150 100 3 30 12 93 2480400 152387.50 2480.4000 16.276926 -956525.0
203 10011 New York, NY, United States Chelsea Manhattan 40.73862 -73.99758 1000 250 80 25 1 1125 2 90 2480400 81942.50 2480.4000 30.270006 -1660975.0
204 10011 New York, NY, United States Chelsea Manhattan 40.74377 -73.99905 1000 137 80 100 4 1125 1 100 2480400 56483.75 2480.4000 43.913515 -1915562.5
205 10011 New York, NY, United States Chelsea Manhattan 40.74301 -73.99370 1000 249 100 0 1 1125 8 88 2480400 82763.75 2480.4000 29.969642 -1652762.5
206 10011 New York, NY, United States Greenwich Village Manhattan 40.73432 -73.99686 1000 600 100 0 31 90 0 NA 2480400 178850.00 2480.4000 13.868605 -691900.0
207 10011 New York, NY, United States Chelsea Manhattan 40.74107 -73.99936 1000 250 100 0 2 14 2 100 2480400 83037.50 2480.4000 29.870842 -1650025.0
208 10011 New York, NY, United States Chelsea Manhattan 40.74540 -74.00427 1000 450 225 100 90 1125 0 NA 2480400 163337.50 2480.4000 15.185735 -847025.0
209 10011 New York, NY, United States Chelsea Manhattan 40.74040 -73.99853 1000 299 100 30 2 180 0 NA 2480400 98641.25 2480.4000 25.145667 -1493987.5
210 10011 New York, NY, United States Chelsea Manhattan 40.74020 -73.99900 1000 300 149 25 30 1125 51 91 2480400 105704.00 2480.4000 23.465526 -1423360.0
211 10011 New York, NY, United States Chelsea Manhattan 40.74429 -73.99984 1000 130 50 25 26 60 39 95 2480400 44712.50 2480.4000 55.474420 -2033275.0
212 10011 New York, NY, United States Chelsea Manhattan 40.74289 -73.99530 1000 300 100 0 6 6 0 NA 2480400 96725.00 2480.4000 25.643836 -1513150.0
214 10011 New York, NY, United States Chelsea Manhattan 40.73939 -73.99612 550 429 150 0 10 730 18 100 2480400 139338.75 4509.8182 17.801222 -1087012.5
215 10011 New York, NY, United States Chelsea Manhattan 40.74006 -74.00071 1000 195 95 20 3 1125 0 NA 2480400 68711.25 2480.4000 36.098892 -1793287.5
216 10011 New York, NY, United States Chelsea Manhattan 40.74918 -74.00369 1000 800 100 0 1 12 11 100 2480400 233600.00 2480.4000 10.618151 -144400.0
217 10011 New York, NY, United States Chelsea Manhattan 40.74339 -73.99414 1000 450 250 0 6 1125 2 90 2480400 159687.50 2480.4000 15.532838 -883525.0
218 10011 New York, NY, United States Chelsea Manhattan 40.74552 -74.00060 1000 230 100 0 6 21 6 100 2480400 77562.50 2480.4000 31.979371 -1704775.0
219 10011 New York, NY, United States Chelsea Manhattan 40.74325 -73.99528 1000 223 80 0 3 1125 0 NA 2480400 72726.25 2480.4000 34.105980 -1753137.5
220 10011 New York, NY, United States Chelsea Manhattan 40.74637 -74.00020 1000 240 110 25 3 1125 2 100 2480400 83585.00 2480.4000 29.675181 -1644550.0
221 10011 New York, NY, United States Chelsea Manhattan 40.73975 -73.99848 1000 265 60 60 3 45 2 80 2480400 85683.75 2480.4000 28.948313 -1623562.5
222 10011 New York, NY, United States Chelsea Manhattan 40.74318 -73.99820 1000 129 150 0 1 1125 6 96 2480400 57213.75 2480.4000 43.353215 -1908262.5
223 10011 New York, NY, United States West Village Manhattan 40.73938 -74.00176 1000 400 100 0 6 1125 4 100 2480400 124100.00 2480.4000 19.987107 -1239400.0
224 10011 New York, NY, United States Greenwich Village Manhattan 40.73383 -73.99899 1000 200 60 0 2 1125 0 NA 2480400 63510.00 2480.4000 39.055267 -1845300.0
225 10011 New York, NY, United States Chelsea Manhattan 40.74558 -74.00325 1000 260 120 0 2 1125 2 100 2480400 88695.00 2480.4000 27.965500 -1593450.0
226 10011 New York, NY, United States Chelsea Manhattan 40.74319 -73.99636 1000 90 100 0 14 1125 0 NA 2480400 39237.50 2480.4000 63.215037 -2088025.0
227 10011 New York, NY, United States Chelsea Manhattan 40.74482 -73.99917 1000 170 80 0 5 1125 13 87 2480400 58217.50 2480.4000 42.605746 -1898225.0
228 10011 New York, NY, United States Chelsea Manhattan 40.74122 -73.99963 1000 325 75 0 2 28 47 98 2480400 99918.75 2480.4000 24.824170 -1481212.5
229 10011 New York, NY, United States Chelsea Manhattan 40.74707 -74.00332 1000 500 150 0 7 1124 26 99 2480400 158775.00 2480.4000 15.622107 -892650.0
230 10011 New York, NY, United States Chelsea Manhattan 40.74468 -74.00157 1000 382 200 0 90 1125 0 NA 2480400 133772.50 2480.4000 18.541927 -1142675.0
231 10011 Chelsea, New York, NY, United States Chelsea Manhattan 40.74140 -73.99815 1000 800 100 0 30 1125 22 99 2480400 233600.00 2480.4000 10.618151 -144400.0
232 10011 New York, NY, United States Chelsea Manhattan 40.74279 -74.00193 1000 500 160 25 6 30 40 92 2480400 162060.00 2480.4000 15.305442 -859800.0
233 10011 New York, NY, United States Chelsea Manhattan 40.74437 -74.00007 1000 499 90 0 3 1125 5 100 2480400 149741.25 2480.4000 16.564574 -982987.5
234 10011 New York, NY, United States Chelsea Manhattan 40.74829 -74.00462 1000 425 175 0 2 1125 5 100 2480400 141893.75 2480.4000 17.480685 -1061462.5
235 10011 New York, NY, United States Chelsea Manhattan 40.74391 -73.99582 1000 350 100 0 1 1125 2 100 2480400 110412.50 2480.4000 22.464848 -1376275.0
236 10011 New York, NY, United States Chelsea Manhattan 40.74299 -73.99436 1000 377 180 5 29 1125 0 NA 2480400 129848.75 2480.4000 19.102225 -1181912.5
237 10011 New York, NY, United States Chelsea Manhattan 40.74353 -73.99709 1000 545 100 0 5 1125 42 98 2480400 163793.75 2480.4000 15.143435 -842462.5
238 10011 New York, NY, United States Chelsea Manhattan 40.74204 -73.99899 1000 275 70 50 3 90 20 96 2480400 89151.25 2480.4000 27.822381 -1588887.5
239 10011 New York, NY, United States Chelsea Manhattan 40.73888 -73.99897 1000 500 185 0 3 15 11 97 2480400 163885.00 2480.4000 15.135003 -841550.0
240 10011 New York, NY, United States Chelsea Manhattan 40.74625 -74.00000 1000 305 130 30 3 1125 2 80 2480400 104663.75 2480.4000 23.698750 -1433762.5
241 10011 New York, NY, United States West Village Manhattan 40.73988 -74.00360 1000 269 80 0 2 1125 68 93 2480400 85318.75 2480.4000 29.072156 -1627212.5
242 10011 New York, NY, United States Greenwich Village Manhattan 40.73415 -73.99814 1000 425 100 0 4 30 68 97 2480400 130943.75 2480.4000 18.942485 -1170962.5
243 10013 New York, NY, United States Little Italy Manhattan 40.71809 -73.99811 1000 220 59 25 1 1125 128 95 3316500 70664.00 3316.5000 46.933375 -2609860.0
244 10013 New York, NY, United States Tribeca Manhattan 40.72052 -74.00365 1000 499 110 25 14 1125 23 91 3316500 154486.25 3316.5000 21.467930 -1771637.5
245 10013 New York, NY, United States SoHo Manhattan 40.72162 -74.00414 1000 499 80 20 2 1125 63 95 3316500 149741.25 3316.5000 22.148206 -1819087.5
246 10013 New York, NY, United States SoHo Manhattan 40.72129 -74.00190 1000 250 150 50 30 1125 0 NA 3316500 93987.50 3316.5000 35.286607 -2376625.0
247 10013 New York, NY, United States Little Italy Manhattan 40.71905 -73.99677 1000 199 145 20 28 365 89 84 3316500 77106.25 3316.5000 43.012077 -2545437.5
248 10013 New York, NY, United States Tribeca Manhattan 40.71920 -74.01022 1000 251 50 50 1 1125 12 84 3316500 79661.25 3316.5000 41.632538 -2519887.5
249 10013 New York, NY, United States SoHo Manhattan 40.72362 -74.00530 1000 425 150 0 4 14 2 100 3316500 138243.75 3316.5000 23.990235 -1934062.5
251 10013 New York, NY, United States Nolita Manhattan 40.72216 -73.99571 1000 275 120 45 2 150 32 98 3316500 96086.25 3316.5000 34.515865 -2355637.5
252 10013 New York, NY, United States Tribeca Manhattan 40.72078 -74.00726 1000 300 110 0 4 1125 5 96 3316500 98185.00 3316.5000 33.778072 -2334650.0
253 10013 New York, NY, United States Little Italy Manhattan 40.71889 -73.99686 1000 400 50 50 2 1125 2 100 3316500 120450.00 3316.5000 27.534247 -2112000.0
254 10013 New York, NY, United States Chinatown Manhattan 40.71882 -73.99652 1000 350 150 0 2 1125 8 98 3316500 117712.50 3316.5000 28.174578 -2139375.0
255 10013 New York, NY, United States Little Italy Manhattan 40.71961 -73.99540 1000 135 75 50 2 730 21 92 3316500 51556.25 3316.5000 64.327797 -2800937.5
256 10013 New York, NY, United States Tribeca Manhattan 40.71819 -74.00833 1000 500 75 0 4 7 0 NA 3316500 147825.00 3316.5000 22.435312 -1838250.0
257 10013 New York, NY, United States SoHo Manhattan 40.72547 -74.01000 1000 300 100 0 7 90 51 90 3316500 96725.00 3316.5000 34.287930 -2349250.0
258 10013 New York, NY, United States Tribeca Manhattan 40.72023 -74.00715 1000 450 80 30 1 1125 10 100 3316500 137057.50 3316.5000 24.197873 -1945925.0
259 10013 New York, NY, United States Tribeca Manhattan 40.71989 -74.00465 1000 497 115 25 14 1125 5 88 3316500 154668.75 3316.5000 21.442599 -1769812.5
260 10013 New York, NY, United States Bergen Beach Brooklyn 40.61807 -73.90162 1000 100 30 50 5 7 0 NA 3316500 35405.00 3316.5000 93.673210 -2962450.0
261 10013 New York, NY, United States Chinatown Manhattan 40.71708 -73.99908 1000 145 85 99 29 180 18 98 3316500 59330.75 3316.5000 55.898501 -2723192.5
262 10013 New York, NY, United States Chinatown Manhattan 40.71786 -74.00009 1000 105 100 0 1 25 16 88 3316500 43343.75 3316.5000 76.516222 -2883062.5
263 10013 New York, NY, United States Tribeca Manhattan 40.71953 -74.00386 1000 339 250 0 14 1125 10 86 3316500 129301.25 3316.5000 25.649404 -2023487.5
264 10013 New York, NY, United States Tribeca Manhattan 40.71683 -74.00574 1000 225 0 50 1 30 1 100 3316500 65243.75 3316.5000 50.832455 -2664062.5
265 10013 New York, NY, United States Little Italy Manhattan 40.71865 -73.99847 1000 225 75 0 3 1125 0 NA 3316500 72543.75 3316.5000 45.717240 -2591062.5
266 10013 New York, NY, United States Tribeca Manhattan 40.71559 -74.00737 1000 650 150 0 1 1125 1 100 3316500 199837.50 3316.5000 16.595984 -1318125.0
267 10013 New York, NY, United States Chinatown Manhattan 40.71787 -73.99640 1000 398 90 35 1 1125 10 98 3316500 124647.50 3316.5000 26.607032 -2070025.0
268 10013 New York, NY, United States Tribeca Manhattan 40.72403 -74.00858 1000 200 100 0 2 1125 7 100 3316500 69350.00 3316.5000 47.822639 -2623000.0
269 10013 New York, NY, United States SoHo Manhattan 40.72337 -74.00175 1000 400 100 50 1 1125 18 98 3316500 127750.00 3316.5000 25.960861 -2039000.0
270 10013 New York, NY, United States Little Italy Manhattan 40.71881 -73.99675 1000 165 150 0 30 1125 2 100 3316500 67068.75 3316.5000 49.449259 -2645812.5
271 10013 New York, NY, United States SoHo Manhattan 40.72468 -74.00746 1000 450 150 0 3 1125 2 100 3316500 145087.50 3316.5000 22.858620 -1865625.0
272 10013 New York, NY, United States SoHo Manhattan 40.72381 -74.00183 1000 403 150 0 4 1125 4 100 3316500 132221.25 3316.5000 25.082957 -1994287.5
273 10013 New York, NY, United States SoHo Manhattan 40.72569 -74.00849 1000 700 150 0 2 1125 1 NA 3316500 213525.00 3316.5000 15.532139 -1181250.0
274 10013 New York, NY, United States Chinatown Manhattan 40.71399 -73.99707 1000 375 100 50 2 1125 15 91 3316500 120906.25 3316.5000 27.430344 -2107437.5
275 10013 New York, NY, United States Little Italy Manhattan 40.72011 -73.99729 1000 265 100 0 1 1125 1 100 3316500 87143.75 3316.5000 38.057807 -2445062.5
276 10013 New York, NY, United States SoHo Manhattan 40.72277 -74.00464 1000 275 60 0 5 34 6 87 3316500 84041.25 3316.5000 39.462764 -2476087.5
278 10013 New York, NY, United States Chinatown Manhattan 40.71826 -73.99671 1000 156 90 10 2 1125 9 100 3316500 56575.00 3316.5000 58.621299 -2750750.0
279 10013 New York, NY, United States SoHo Manhattan 40.72280 -74.00644 1000 350 168 100 2 30 11 100 3316500 127640.50 3316.5000 25.983132 -2040095.0
280 10013 New York, NY, United States Little Italy Manhattan 40.71883 -73.99716 1000 220 90 35 2 1125 119 96 3316500 75920.00 3316.5000 43.684141 -2557300.0
281 10013 New York, NY, United States Chinatown Manhattan 40.71536 -73.99794 1000 290 120 0 2 7 3 93 3316500 96907.50 3316.5000 34.223357 -2347425.0
282 10013 New York, NY, United States Nolita Manhattan 40.72036 -73.99633 1000 550 120 25 4 150 87 98 3316500 169907.50 3316.5000 19.519444 -1617425.0
283 10013 New York, NY, United States Tribeca Manhattan 40.71888 -74.00431 1000 500 100 0 5 1125 0 NA 3316500 151475.00 3316.5000 21.894702 -1801750.0
284 10013 New York, NY, United States SoHo Manhattan 40.72177 -74.00356 1000 760 250 50 14 28 1 100 3316500 248200.00 3316.5000 13.362208 -834500.0
285 10013 New York, NY, United States Chinatown Manhattan 40.71837 -73.99633 1000 260 70 30 2 30 5 96 3316500 83585.00 3316.5000 39.678172 -2480650.0
286 10013 New York, NY, United States SoHo Manhattan 40.72046 -74.00151 1000 950 150 0 4 1125 1 100 3316500 281962.50 3316.5000 11.762202 -496875.0
287 10013 New York, NY, United States SoHo Manhattan 40.72268 -74.00269 1000 650 100 100 2 1000 24 98 3316500 199837.50 3316.5000 16.595984 -1318125.0
288 10013 New York, NY, United States Little Italy Manhattan 40.71717 -73.99817 1000 350 130 15 4 1125 0 NA 3316500 115887.50 3316.5000 28.618272 -2157625.0
289 10013 New York, NY, United States SoHo Manhattan 40.72358 -74.00397 1000 230 30 50 1 1125 1 NA 3316500 70992.50 3316.5000 46.716202 -2606575.0
290 10013 New York, NY, United States SoHo Manhattan 40.72219 -74.00140 1000 500 150 0 7 100 44 98 3316500 158775.00 3316.5000 20.888049 -1728750.0
292 10013 New York, NY, United States Tribeca Manhattan 40.71732 -74.00981 1000 350 125 35 3 35 13 100 3316500 116617.50 3316.5000 28.439128 -2150325.0
293 10013 New York, NY, United States Tribeca Manhattan 40.72005 -74.00455 1000 499 200 0 30 1125 0 NA 3316500 165801.25 3316.5000 20.002865 -1658487.5
294 10013 New York, NY, United States Tribeca Manhattan 40.72113 -74.00478 1000 600 150 100 3 1125 73 98 3316500 193450.00 3316.5000 17.143965 -1382000.0
295 10013 New York, NY, United States Chinatown Manhattan 40.71767 -73.99970 1000 350 60 0 2 1125 0 NA 3316500 104572.50 3316.5000 31.714839 -2270775.0
296 10013 New York, NY, United States Chinatown Manhattan 40.71470 -73.99868 1000 300 200 0 7 60 2 80 3316500 111325.00 3316.5000 29.791152 -2203250.0
297 10013 New York, NY, United States Tribeca Manhattan 40.72262 -74.00861 1000 250 100 0 21 71 0 NA 3316500 83037.50 3316.5000 39.939786 -2486125.0
298 10013 New York, NY, United States Little Italy Manhattan 40.71833 -73.99826 1000 250 100 0 3 1125 155 96 3316500 83037.50 3316.5000 39.939786 -2486125.0
299 10013 New York, NY, United States SoHo Manhattan 40.71938 -74.00163 1000 550 130 0 2 1125 0 NA 3316500 169542.50 3316.5000 19.561467 -1621075.0
300 10013 New York, NY, United States SoHo Manhattan 40.72613 -74.00826 1000 399 100 0 90 1125 5 100 3316500 123826.25 3316.5000 26.783497 -2078237.5
301 10013 New York, NY, United States Tribeca Manhattan 40.72080 -74.01097 1000 300 75 0 4 1125 0 NA 3316500 93075.00 3316.5000 35.632554 -2385750.0
302 10013 New York, NY, United States Tribeca Manhattan 40.71979 -74.00407 1000 799 100 100 3 34 6 100 3316500 240626.25 3316.5000 13.782785 -910237.5
303 10013 New York, NY, United States Little Italy Manhattan 40.71907 -73.99698 1000 375 80 0 3 10 7 97 3316500 114336.25 3316.5000 29.006549 -2173137.5
304 10013 New York, NY, United States Little Italy Manhattan 40.71885 -73.99514 1000 120 75 0 7 120 14 96 3316500 43800.00 3316.5000 75.719178 -2878500.0
306 10013 New York, NY, United States Little Italy Manhattan 40.71794 -73.99955 1000 195 80 75 4 15 30 96 3316500 70536.25 3316.5000 47.018377 -2611137.5
307 10013 New York, NY, United States Tribeca Manhattan 40.71845 -74.00932 1000 259 160 25 2 90 116 96 3316500 96086.25 3316.5000 34.515865 -2355637.5
308 10013 New York, NY, United States Little Italy Manhattan 40.71717 -73.99815 1000 240 105 35 2 90 26 90 3316500 83585.00 3316.5000 39.678172 -2480650.0
310 10013 New York, NY, United States Little Italy Manhattan 40.71836 -73.99777 1000 90 50 25 1 60 106 99 3316500 33762.50 3316.5000 98.230285 -2978875.0
311 10013 New York, NY, United States Little Italy Manhattan 40.71957 -73.99573 1000 175 150 0 30 365 3 60 3316500 69806.25 3316.5000 47.510072 -2618437.5
313 10013 New York, NY, United States SoHo Manhattan 40.72172 -74.00410 1000 275 50 0 5 7 6 100 3316500 82581.25 3316.5000 40.160448 -2490687.5
314 10013 New York, NY, United States Chinatown Manhattan 40.71781 -73.99569 1000 100 100 0 1 1125 0 NA 3316500 41975.00 3316.5000 79.011316 -2896750.0
315 10013 New York, NY, United States Tribeca Manhattan 40.72355 -74.01045 1000 375 250 100 2 30 30 98 3316500 146456.25 3316.5000 22.644988 -1851937.5
316 10013 New York, NY, United States Chinatown Manhattan 40.71865 -73.99587 1000 190 0 25 1 1125 46 96 3316500 53837.50 3316.5000 61.602043 -2778125.0
318 10013 New York, NY, United States Little Italy Manhattan 40.71938 -73.99448 1000 130 100 0 30 365 1 60 3316500 50187.50 3316.5000 66.082192 -2814625.0
320 10013 New York, NY, United States SoHo Manhattan 40.72171 -74.00396 1000 250 300 0 90 150 1 100 3316500 112237.50 3316.5000 29.548948 -2194125.0
321 10013 New York, NY, United States Tribeca Manhattan 40.72345 -74.01001 1000 299 125 100 4 1125 3 90 3316500 107401.25 3316.5000 30.879529 -2242487.5
322 10013 New York, NY, United States Chinatown Manhattan 40.71409 -73.99434 1000 400 100 0 1 62 2 100 3316500 124100.00 3316.5000 26.724416 -2075500.0
323 10013 New York, NY, United States Chinatown Manhattan 40.71709 -73.99628 1000 124 20 0 4 1125 0 NA 3316500 36865.00 3316.5000 89.963380 -2947850.0
324 10013 New York, NY, United States SoHo Manhattan 40.71988 -74.00062 1000 620 180 0 2 1125 4 100 3316500 196005.00 3316.5000 16.920487 -1356450.0
325 10013 New York, NY, United States Chinatown Manhattan 40.71509 -73.99670 1000 65 110 25 5 30 108 94 3316500 35678.75 3316.5000 92.954490 -2959712.5
326 10013 New York, NY, United States Tribeca Manhattan 40.71893 -74.00330 1000 350 150 0 6 100 20 100 3316500 117712.50 3316.5000 28.174578 -2139375.0
327 10013 New York, NY, United States Little Italy Manhattan 40.71850 -73.99824 1000 175 100 0 30 365 0 NA 3316500 62506.25 3316.5000 53.058694 -2691437.5
328 10013 New York, NY, United States Tribeca Manhattan 40.71982 -74.01134 1000 197 100 0 1 1125 0 NA 3316500 68528.75 3316.5000 48.395746 -2631212.5
329 10013 New York, NY, United States SoHo Manhattan 40.71908 -73.99976 1000 150 100 50 1 1125 2 100 3316500 59312.50 3316.5000 55.915701 -2723375.0
330 10013 New York, NY, United States Tribeca Manhattan 40.71775 -74.00607 1000 450 110 30 14 1125 13 89 3316500 141437.50 3316.5000 23.448520 -1902125.0
331 10013 New York, NY, United States Little Italy Manhattan 40.71910 -73.99513 1000 250 100 0 3 1125 0 NA 3316500 83037.50 3316.5000 39.939786 -2486125.0
332 10013 New York, NY, United States Tribeca Manhattan 40.71863 -74.01170 1000 220 110 25 2 60 76 91 3316500 78110.00 3316.5000 42.459352 -2535400.0
333 10013 New York, NY, United States Tribeca Manhattan 40.71877 -74.00260 1000 349 100 0 3 12 0 NA 3316500 110138.75 3316.5000 30.112018 -2215112.5
334 10013 New York, NY, United States SoHo Manhattan 40.72355 -74.00320 1000 200 80 0 2 1125 0 NA 3316500 66430.00 3316.5000 49.924733 -2652200.0
335 10013 New York, NY, United States Tribeca Manhattan 40.71912 -74.00380 1000 499 110 25 14 1120 14 88 3316500 154486.25 3316.5000 21.467930 -1771637.5
336 10013 New York, NY, United States Tribeca Manhattan 40.71549 -74.00804 1000 325 80 0 3 1125 6 100 3316500 100648.75 3316.5000 32.951229 -2310012.5
337 10013 New York, NY, United States SoHo Manhattan 40.71953 -74.00064 1000 450 79 69 2 11 3 100 3316500 139758.50 3316.5000 23.730220 -1918915.0
338 10013 New York, NY, United States Tribeca Manhattan 40.71735 -74.00605 1000 850 150 85 2 1125 14 100 3316500 260792.50 3316.5000 12.717007 -708575.0
339 10013 New York, NY, United States Tribeca Manhattan 40.71994 -74.00332 1000 350 130 25 14 1125 21 94 3316500 116617.50 3316.5000 28.439128 -2150325.0
341 10013 New York, NY, United States Little Italy Manhattan 40.71837 -73.99768 1000 190 25 20 5 90 2 90 3316500 57122.50 3316.5000 58.059434 -2745275.0
342 10013 New York, NY, United States Chinatown Manhattan 40.71432 -73.99866 1000 151 70 38 12 65 0 NA 3316500 54330.25 3316.5000 61.043341 -2773197.5
343 10013 New York, NY, United States SoHo Manhattan 40.72373 -74.00552 1000 450 250 0 2 1125 0 NA 3316500 159687.50 3316.5000 20.768689 -1719625.0
344 10013 New York, NY, United States Chinatown Manhattan 40.71816 -73.99538 1000 90 100 0 6 11 0 NA 3316500 39237.50 3316.5000 84.523734 -2924125.0
345 10013 New York, NY, United States Chinatown Manhattan 40.71469 -73.99950 1000 220 20 25 4 5 0 NA 3316500 64970.00 3316.5000 51.046637 -2666800.0
346 10013 New York, NY, United States Tribeca Manhattan 40.71953 -74.00401 1000 490 110 30 14 1125 14 93 3316500 152387.50 3316.5000 21.763596 -1792625.0
347 10013 New York, NY, United States Little Italy Manhattan 40.71953 -73.99685 1000 110 95 20 2 10 34 99 3316500 45442.50 3316.5000 72.982340 -2862075.0
348 10014 New York, NY, United States West Village Manhattan 40.73351 -74.00454 1000 350 100 50 3 1125 0 NA 2491600 114062.50 2491.6000 21.844164 -1350975.0
349 10014 New York, NY, United States West Village Manhattan 40.73055 -74.00435 1000 275 75 10 3 7 58 99 2491600 86961.25 2491.6000 28.651842 -1621987.5
350 10014 New York, NY, United States West Village Manhattan 40.73465 -74.00139 1000 325 100 0 2 6 0 NA 2491600 103568.75 2491.6000 24.057450 -1455912.5
352 10014 New York, NY, United States SoHo Manhattan 40.72608 -74.00022 1000 240 50 0 1 90 9 74 2491600 73000.00 2491.6000 34.131507 -1761600.0
353 10014 New York, NY, United States West Village Manhattan 40.73123 -74.00428 1000 200 50 0 5 1125 1 80 2491600 62050.00 2491.6000 40.154714 -1871100.0
354 10014 New York, NY, United States West Village Manhattan 40.73778 -74.00287 1000 350 180 0 2 1125 16 97 2491600 122092.50 2491.6000 20.407478 -1270675.0
355 10014 New York, NY, United States West Village Manhattan 40.73170 -74.00395 1000 150 100 50 30 90 1 80 2491600 59312.50 2491.6000 42.008008 -1898475.0
356 10014 New York, NY, United States West Village Manhattan 40.73750 -74.00493 1000 220 50 0 2 1125 0 NA 2491600 67525.00 2491.6000 36.898926 -1816350.0
357 10014 New York, NY, United States West Village Manhattan 40.73053 -74.00297 1000 250 125 0 3 20 3 93 2491600 86687.50 2491.6000 28.742322 -1624725.0
358 10014 New York, NY, United States West Village Manhattan 40.72884 -74.00285 1000 200 150 0 5 1000 54 97 2491600 76650.00 2491.6000 32.506197 -1725100.0
359 10014 New York, NY, United States West Village Manhattan 40.73247 -74.00335 1000 225 100 25 2 1125 54 96 2491600 78018.75 2491.6000 31.935913 -1711412.5
360 10014 New York, NY, United States West Village Manhattan 40.73451 -74.00746 1000 510 150 75 3 1000 12 95 2491600 166987.50 2491.6000 14.920877 -821725.0
361 10014 New York, NY, United States West Village Manhattan 40.73608 -74.00039 1000 300 100 0 1 1125 7 94 2491600 96725.00 2491.6000 25.759628 -1524350.0
362 10014 New York, NY, United States West Village Manhattan 40.73123 -74.00684 1000 450 50 0 1 1125 0 NA 2491600 130487.50 2491.6000 19.094549 -1186725.0
363 10014 New York, NY, United States West Village Manhattan 40.73753 -74.00882 1000 595 150 25 2 17 7 89 2491600 186606.25 2491.6000 13.352179 -625537.5
364 10014 New York, NY, United States West Village Manhattan 40.73105 -74.00285 1000 250 250 0 80 98 5 100 2491600 104937.50 2491.6000 23.743657 -1442225.0
365 10014 New York, NY, United States West Village Manhattan 40.73817 -74.00274 1000 249 100 0 3 21 6 97 2491600 82763.75 2491.6000 30.104968 -1663962.5
366 10014 New York, NY, United States West Village Manhattan 40.73879 -74.00425 1000 200 100 0 27 75 1 97 2491600 69350.00 2491.6000 35.927902 -1798100.0
367 10014 New York, NY, United States West Village Manhattan 40.73630 -74.00317 1000 233 88 0 30 1125 10 90 2491600 76631.75 2491.6000 32.513938 -1725282.5
368 10014 New York, NY, United States West Village Manhattan 40.73746 -74.00456 1000 350 140 0 10 1125 2 100 2491600 116252.50 2491.6000 21.432657 -1329075.0
369 10014 New York, NY, United States West Village Manhattan 40.73704 -74.01049 1000 130 50 50 2 1125 57 98 2491600 46537.50 2491.6000 53.539619 -2026225.0
370 10014 New York, NY, United States West Village Manhattan 40.73178 -74.00173 1000 300 60 10 5 730 88 95 2491600 91615.00 2491.6000 27.196420 -1575450.0
371 10014 New York, NY, United States West Village Manhattan 40.73313 -74.00336 1000 250 100 0 1 1125 1 NA 2491600 83037.50 2491.6000 30.005720 -1661225.0
372 10014 New York, NY, United States West Village Manhattan 40.73280 -74.00845 1000 299 100 0 2 6 1 100 2491600 96451.25 2491.6000 25.832739 -1527087.5
373 10014 New York, NY, United States West Village Manhattan 40.73804 -74.00416 1000 89 35 25 30 365 13 94 2491600 31298.75 2491.6000 79.607013 -2178612.5
374 10014 New York, NY, United States Chelsea Manhattan 40.74057 -74.00263 1000 150 125 22 4 14 21 95 2491600 60918.50 2491.6000 40.900548 -1882415.0
375 10014 New York, NY, United States West Village Manhattan 40.73115 -74.00429 1000 158 60 0 1 14 5 100 2491600 52012.50 2491.6000 47.903869 -1971475.0
376 10014 New York, NY, United States West Village Manhattan 40.73434 -74.00462 1000 300 90 0 4 60 104 94 2491600 95265.00 2491.6000 26.154411 -1538950.0
377 10014 New York, NY, United States West Village Manhattan 40.73145 -74.00184 1000 114 65 50 1 6 10 100 2491600 44347.50 2491.6000 56.183550 -2048125.0
378 10014 New York, NY, United States West Village Manhattan 40.73507 -74.00048 1000 225 120 50 3 365 13 97 2491600 82763.75 2491.6000 30.104968 -1663962.5
379 10014 New York, NY, United States West Village Manhattan 40.73762 -74.00200 1000 400 100 30 5 60 1 100 2491600 126290.00 2491.6000 19.729195 -1228700.0
380 10014 New York, NY, United States West Village Manhattan 40.73198 -74.00526 1000 149 135 0 31 1125 5 84 2491600 60498.75 2491.6000 41.184322 -1886612.5
381 10014 New York, NY, United States West Village Manhattan 40.73820 -74.00299 1000 299 120 40 5 1125 4 95 2491600 102291.25 2491.6000 24.357900 -1468687.5
382 10014 New York, NY, United States West Village Manhattan 40.73078 -74.01040 1000 350 100 0 4 5 9 97 2491600 110412.50 2491.6000 22.566285 -1387475.0
383 10014 New York, NY, United States West Village Manhattan 40.73664 -74.00567 1000 125 175 25 3 1125 38 92 2491600 61593.75 2491.6000 40.452156 -1875662.5
384 10014 New York, NY, United States West Village Manhattan 40.73464 -74.00225 1000 950 85 100 3 14 28 96 2491600 279772.50 2491.6000 8.905807 306125.0
385 10014 New York, NY, United States West Village Manhattan 40.73378 -74.00429 1000 375 150 0 7 30 8 95 2491600 124556.25 2491.6000 20.003813 -1246037.5
386 10014 New York, NY, United States West Village Manhattan 40.73066 -74.00371 1000 175 100 0 1 1125 0 NA 2491600 62506.25 2491.6000 39.861614 -1866537.5
387 10014 New York, NY, United States West Village Manhattan 40.73226 -74.00644 1000 250 150 0 30 365 3 40 2491600 90337.50 2491.6000 27.581016 -1588225.0
388 10014 New York, NY, United States West Village Manhattan 40.73447 -74.00266 1000 599 100 0 1 1125 0 NA 2491600 178576.25 2491.6000 13.952583 -705837.5
390 10014 New York, NY, United States West Village Manhattan 40.73221 -74.00928 1000 375 150 0 3 30 19 94 2491600 124556.25 2491.6000 20.003813 -1246037.5
391 10014 New York, NY, United States West Village Manhattan 40.73207 -74.01087 1000 270 100 0 4 14 1 NA 2491600 88512.50 2491.6000 28.149696 -1606475.0
392 10014 New York, NY, United States West Village Manhattan 40.73822 -74.00606 1000 275 75 0 2 14 11 96 2491600 86231.25 2491.6000 28.894397 -1629287.5
393 10014 New York, NY, United States West Village Manhattan 40.73634 -74.00485 1000 350 100 0 1 1125 7 100 2491600 110412.50 2491.6000 22.566285 -1387475.0
394 10014 New York, NY, United States West Village Manhattan 40.73731 -74.00929 1000 140 100 0 25 56 0 NA 2491600 52925.00 2491.6000 47.077940 -1962350.0
395 10014 New York, NY, United States West Village Manhattan 40.73537 -74.00209 1000 415 100 0 2 1125 57 99 2491600 128206.25 2491.6000 19.434310 -1209537.5
396 10014 New York, NY, United States West Village Manhattan 40.73142 -74.00275 1000 300 60 0 2 1125 2 90 2491600 90885.00 2491.6000 27.414865 -1582750.0
397 10014 New York, NY, United States West Village Manhattan 40.73088 -74.00378 1000 300 60 50 1 1125 59 94 2491600 94535.00 2491.6000 26.356376 -1546250.0
398 10014 New York, NY, United States West Village Manhattan 40.73303 -74.00118 1000 200 120 0 3 1125 1 100 2491600 72270.00 2491.6000 34.476270 -1768900.0
399 10014 New York, NY, United States West Village Manhattan 40.73486 -74.00386 1000 400 150 10 1 1125 3 87 2491600 132130.00 2491.6000 18.857186 -1170300.0
400 10014 New York, NY, United States West Village Manhattan 40.73312 -74.00420 1000 300 75 0 4 400 153 88 2491600 93075.00 2491.6000 26.769809 -1560850.0
401 10014 New York, NY, United States West Village Manhattan 40.73281 -74.00688 1000 375 85 0 4 90 5 100 2491600 115066.25 2491.6000 21.653613 -1340937.5
402 10014 New York, NY, United States West Village Manhattan 40.73410 -74.00434 1000 814 350 0 3 1125 31 93 2491600 273932.50 2491.6000 9.095671 247725.0
403 10014 New York, NY, United States West Village Manhattan 40.73845 -74.00551 1000 220 100 100 10 180 8 100 2491600 82125.00 2491.6000 30.339117 -1670350.0
404 10014 New York, NY, United States West Village Manhattan 40.73638 -74.00393 1000 180 90 0 28 30 0 NA 2491600 62415.00 2491.6000 39.919891 -1867450.0
405 10014 New York, NY, United States West Village Manhattan 40.73015 -74.00304 1000 400 90 10 3 30 17 91 2491600 123370.00 2491.6000 20.196158 -1257900.0
406 10014 New York, NY, United States West Village Manhattan 40.73160 -74.00212 1000 210 125 0 5 21 53 99 2491600 75737.50 2491.6000 32.897838 -1734225.0
407 10014 New York, NY, United States West Village Manhattan 40.73011 -74.00401 1000 285 150 50 30 90 1 100 2491600 103568.75 2491.6000 24.057450 -1455912.5
409 10014 New York, NY, United States West Village Manhattan 40.73408 -74.00263 1000 250 120 20 2 1125 5 100 2491600 87417.50 2491.6000 28.502302 -1617425.0
410 10014 New York, NY, United States West Village Manhattan 40.73103 -74.00197 1000 155 90 20 30 1125 0 NA 2491600 57031.25 2491.6000 43.688329 -1921287.5
411 10014 New York, NY, United States West Village Manhattan 40.73545 -74.00097 1000 195 100 0 4 7 1 100 2491600 67981.25 2491.6000 36.651283 -1811787.5
412 10014 New York, NY, United States West Village Manhattan 40.73292 -74.00222 1000 168 100 0 1 1125 1 NA 2491600 60590.00 2491.6000 41.122297 -1885700.0
413 10014 New York, NY, United States West Village Manhattan 40.73277 -74.00413 1000 205 60 0 2 1125 6 90 2491600 64878.75 2491.6000 38.403946 -1842812.5
414 10014 New York, NY, United States West Village Manhattan 40.73704 -74.00501 1000 500 200 30 3 15 5 100 2491600 168265.00 2491.6000 14.807595 -808950.0
415 10014 New York, NY, United States West Village Manhattan 40.73204 -74.00189 1000 315 100 0 3 30 7 90 2491600 100831.25 2491.6000 24.710593 -1483287.5
416 10014 New York, NY, United States West Village Manhattan 40.73132 -74.00429 1000 200 100 0 15 37 0 NA 2491600 69350.00 2491.6000 35.927902 -1798100.0
417 10014 New York, NY, United States West Village Manhattan 40.73406 -74.00963 1000 299 100 0 2 1125 2 90 2491600 96451.25 2491.6000 25.832739 -1527087.5
418 10014 New York, NY, United States West Village Manhattan 40.73134 -74.00215 1000 450 300 0 30 1125 0 NA 2491600 166987.50 2491.6000 14.920877 -821725.0
419 10014 New York, NY, United States West Village Manhattan 40.73456 -74.00347 1000 88 60 30 2 365 2 100 2491600 35040.00 2491.6000 71.107306 -2141200.0
420 10014 New York, NY, United States West Village Manhattan 40.73413 -74.00465 1000 300 100 0 1 1125 5 100 2491600 96725.00 2491.6000 25.759628 -1524350.0
421 10014 New York, NY, United States West Village Manhattan 40.73399 -74.00549 1000 250 120 50 3 7 30 95 2491600 89607.50 2491.6000 27.805708 -1595525.0
422 10014 New York, NY, United States West Village Manhattan 40.73854 -74.00821 1000 80 100 0 90 90 9 100 2491600 36500.00 2491.6000 68.263014 -2126600.0
423 10014 New York, NY, United States West Village Manhattan 40.73418 -74.00460 1000 194 80 20 3 1125 117 94 2491600 66247.50 2491.6000 37.610476 -1829125.0
424 10014 New York, NY, United States West Village Manhattan 40.73103 -74.00778 1000 350 100 0 3 60 0 NA 2491600 110412.50 2491.6000 22.566285 -1387475.0
426 10014 New York, NY, United States West Village Manhattan 40.73454 -74.00365 1000 350 100 50 1 1125 237 88 2491600 114062.50 2491.6000 21.844164 -1350975.0
427 10014 New York, NY, United States West Village Manhattan 40.73558 -74.00492 1000 550 175 0 3 1124 0 NA 2491600 176112.50 2491.6000 14.147775 -730475.0
428 10014 New York, NY, United States West Village Manhattan 40.73208 -74.00784 1000 225 60 30 2 1125 1 100 2491600 72543.75 2491.6000 34.346170 -1766162.5
429 10014 New York, NY, United States West Village Manhattan 40.73795 -74.00593 1000 495 120 0 3 14 29 93 2491600 153026.25 2491.6000 16.282174 -961337.5
430 10014 New York, NY, United States West Village Manhattan 40.72965 -74.00397 1000 385 160 25 5 1125 44 93 2491600 130578.75 2491.6000 19.081206 -1185812.5
431 10014 New York, NY, United States West Village Manhattan 40.73756 -74.00755 1000 600 175 0 5 1125 7 100 2491600 189800.00 2491.6000 13.127503 -593600.0
432 10014 New York, NY, United States West Village Manhattan 40.73643 -74.00351 1000 140 100 0 4 10 0 NA 2491600 52925.00 2491.6000 47.077940 -1962350.0
433 10014 New York, NY, United States West Village Manhattan 40.73198 -74.00239 1000 550 275 0 30 1125 0 NA 2491600 190712.50 2491.6000 13.064692 -584475.0
434 10014 New York, NY, United States West Village Manhattan 40.73302 -74.00585 1000 500 100 0 1 1125 0 NA 2491600 151475.00 2491.6000 16.448919 -976850.0
435 10014 New York, NY, United States West Village Manhattan 40.73658 -74.00121 1000 295 100 100 4 1125 2 80 2491600 102656.25 2491.6000 24.271294 -1465037.5
436 10014 New York, NY, United States Greenwich Village Manhattan 40.72667 -73.99878 1000 289 50 0 1 89 3 73 2491600 86413.75 2491.6000 28.833374 -1627462.5
437 10014 New York, NY, United States West Village Manhattan 40.73268 -74.00314 1000 800 120 0 1 30 2 100 2491600 236520.00 2491.6000 10.534416 -126400.0
439 10021 New York, NY, United States Upper East Side Manhattan 40.76703 -73.95553 1000 200 90 60 6 1125 4 100 1815600 72270.00 1815.6000 25.122457 -1092900.0
440 10021 New York, NY, United States Upper East Side Manhattan 40.76991 -73.95327 1000 175 100 80 3 1125 0 NA 1815600 68346.25 1815.6000 26.564735 -1132137.5
441 10021 New York, NY, United States Upper East Side Manhattan 40.77114 -73.95913 1000 255 100 0 30 1125 0 NA 1815600 84406.25 1815.6000 21.510255 -971537.5
442 10021 New York, NY, United States Upper East Side Manhattan 40.76744 -73.96118 1000 135 10 0 1 15 225 83 1815600 38416.25 1815.6000 47.261250 -1431437.5
443 10021 New York, NY, United States Upper East Side Manhattan 40.77174 -73.95703 1000 113 100 0 1 10 7 97 1815600 45533.75 1815.6000 39.873720 -1360262.5
444 10021 New York, NY, United States Upper East Side Manhattan 40.76768 -73.95455 1000 320 110 30 2 1125 1 100 1815600 105850.00 1815.6000 17.152574 -757100.0
445 10021 New York, NY, United States Upper East Side Manhattan 40.77016 -73.95716 1000 300 50 0 1 1125 1 100 1815600 89425.00 1815.6000 20.303047 -921350.0
446 10021 New York, NY, United States Upper East Side Manhattan 40.76982 -73.95697 1000 89 150 20 30 1125 11 89 1815600 47723.75 1815.6000 38.043951 -1338362.5
447 10021 New York, NY, United States Upper East Side Manhattan 40.76734 -73.95233 1000 100 100 0 4 1125 28 96 1815600 41975.00 1815.6000 43.254318 -1395850.0
448 10021 New York, NY, United States Upper East Side Manhattan 40.76738 -73.95556 1000 125 100 0 31 31 0 NA 1815600 48818.75 1815.6000 37.190629 -1327412.5
449 10021 New York, NY, United States Upper East Side Manhattan 40.77112 -73.96226 1000 239 85 0 7 1125 70 99 1815600 77836.25 1815.6000 23.325892 -1037237.5
450 10021 New York, NY, United States Upper East Side Manhattan 40.76852 -73.96245 1000 395 200 0 30 1125 0 NA 1815600 137331.25 1815.6000 13.220589 -442287.5
451 10021 New York, NY, United States Upper East Side Manhattan 40.76756 -73.95643 1000 215 100 0 2 1122 1 20 1815600 73456.25 1815.6000 24.716753 -1081037.5
452 10021 New York, NY, United States Upper East Side Manhattan 40.76751 -73.96309 1000 300 125 0 4 120 57 96 1815600 100375.00 1815.6000 18.088169 -811850.0
453 10021 New York, NY, United States Upper East Side Manhattan 40.76640 -73.95854 1000 275 35 0 2 7 9 90 1815600 80391.25 1815.6000 22.584547 -1011687.5
454 10021 New York, NY, United States Upper East Side Manhattan 40.76959 -73.95338 1000 75 15 5 3 15 17 88 1815600 23086.25 1815.6000 78.644215 -1584737.5
455 10021 New York, NY, United States Upper East Side Manhattan 40.76615 -73.95662 1000 300 100 0 5 1125 8 93 1815600 96725.00 1815.6000 18.770742 -848350.0
456 10021 New York, NY, United States Upper East Side Manhattan 40.76884 -73.95826 1000 250 30 0 1 1125 4 100 1815600 72817.50 1815.6000 24.933567 -1087425.0
457 10021 New York, NY, United States Upper East Side Manhattan 40.76717 -73.95317 1000 250 100 0 2 1125 3 100 1815600 83037.50 1815.6000 21.864820 -985225.0
458 10021 New York, NY, United States Upper East Side Manhattan 40.76976 -73.95208 1000 110 100 0 3 1125 11 98 1815600 44712.50 1815.6000 40.606094 -1368475.0
459 10021 New York, NY, United States Upper East Side Manhattan 40.76769 -73.95236 1000 115 150 0 30 1125 12 88 1815600 53381.25 1815.6000 34.011942 -1281787.5
460 10021 New York, NY, United States Upper East Side Manhattan 40.76644 -73.95486 1000 130 100 0 3 29 3 87 1815600 50187.50 1815.6000 36.176339 -1313725.0
461 10021 New York, NY, United States Upper East Side Manhattan 40.76544 -73.95850 1000 380 60 30 3 1125 4 95 1815600 114975.00 1815.6000 15.791259 -665850.0
462 10021 New York, NY, United States Upper East Side Manhattan 40.76966 -73.95319 1000 150 100 0 5 1125 2 60 1815600 55662.50 1815.6000 32.618010 -1258975.0
463 10021 New York, NY, United States Upper East Side Manhattan 40.77059 -73.95686 1000 150 100 0 1 1125 0 NA 1815600 55662.50 1815.6000 32.618010 -1258975.0
464 10021 New York, NY, United States Upper East Side Manhattan 40.77093 -73.95873 1000 285 200 0 30 180 0 NA 1815600 107218.75 1815.6000 16.933605 -743412.5
465 10022 New York, NY, United States Midtown Manhattan 40.76036 -73.96462 1000 225 125 0 30 1125 7 94 2031600 79843.75 2031.6000 25.444697 -1233162.5
466 10022 New York, NY, United States Midtown Manhattan 40.75901 -73.96198 1000 365 200 0 30 1125 0 NA 2031600 129118.75 2031.6000 15.734353 -740412.5
467 10022 New York, NY, United States Midtown Manhattan 40.75858 -73.96342 1000 200 80 0 2 1125 0 NA 2031600 66430.00 2031.6000 30.582568 -1367300.0
468 10022 New York, NY, United States Midtown Manhattan 40.75683 -73.96901 1000 165 150 0 30 1125 0 NA 2031600 67068.75 2031.6000 30.291306 -1360912.5
469 10022 New York, NY, United States Midtown Manhattan 40.75903 -73.96669 1000 199 150 0 7 69 0 NA 2031600 76376.25 2031.6000 26.599892 -1267837.5
470 10022 New York, NY, United States Upper East Side Manhattan 40.76128 -73.96463 1000 485 100 50 7 365 11 98 2031600 151018.75 2031.6000 13.452634 -521412.5
471 10022 New York, NY, United States Midtown Manhattan 40.75287 -73.96708 1000 230 100 0 1 1125 0 NA 2031600 77562.50 2031.6000 26.193070 -1255975.0
472 10022 New York, NY, United States Midtown Manhattan 40.76015 -73.96378 1000 247 75 0 5 33 25 94 2031600 78566.25 2031.6000 25.858432 -1245937.5
473 10022 New York, NY, United States Midtown Manhattan 40.76026 -73.96590 1000 80 100 0 1 1125 275 100 2031600 36500.00 2031.6000 55.660274 -1666600.0
474 10022 New York, NY, United States Midtown Manhattan 40.75604 -73.96810 1000 185 20 0 1 4 2 90 2031600 53563.75 2031.6000 37.928636 -1495962.5
475 10022 New York, NY, United States Midtown Manhattan 40.75375 -73.96362 1000 350 250 0 30 1125 0 NA 2031600 132312.50 2031.6000 15.354558 -708475.0
476 10022 New York, NY, United States Midtown Manhattan 40.75669 -73.96199 1000 300 200 0 30 1125 0 NA 2031600 111325.00 2031.6000 18.249270 -918350.0
477 10022 New York, NY, United States Midtown Manhattan 40.75508 -73.96707 1000 347 130 30 3 1125 4 100 2031600 116161.25 2031.6000 17.489481 -869987.5
478 10022 New York, NY, United States Midtown Manhattan 40.75605 -73.96503 1000 165 150 0 30 1125 0 NA 2031600 67068.75 2031.6000 30.291306 -1360912.5
479 10022 New York, NY, United States Midtown Manhattan 40.75608 -73.96895 1000 200 150 0 30 1125 2 70 2031600 76650.00 2031.6000 26.504892 -1265100.0
480 10022 New York, NY, United States Upper East Side Manhattan 40.76072 -73.96272 1000 250 100 0 2 7 1 NA 2031600 83037.50 2031.6000 24.466054 -1201225.0
481 10022 New York, NY, United States Upper East Side Manhattan 40.76436 -73.96836 1000 325 100 0 1 1125 0 NA 2031600 103568.75 2031.6000 19.615956 -995912.5
482 10022 New York, NY, United States Midtown Manhattan 40.76208 -73.97172 1000 750 150 0 2 1125 4 100 2031600 227212.50 2031.6000 8.941410 240525.0
483 10022 New York, NY, United States Midtown Manhattan 40.75383 -73.96777 1000 133 80 15 6 23 22 93 2031600 49183.75 2031.6000 41.306326 -1539762.5
484 10022 New York, NY, United States Midtown Manhattan 40.75406 -73.96436 1000 225 200 0 30 1125 0 NA 2031600 90793.75 2031.6000 22.375989 -1123662.5
485 10022 New York, NY, United States Midtown Manhattan 40.75457 -73.96248 1000 360 200 0 30 1125 0 NA 2031600 127750.00 2031.6000 15.902935 -754100.0
486 10022 New York, NY, United States Upper East Side Manhattan 40.76161 -73.96252 1000 200 200 0 30 1125 0 NA 2031600 83950.00 2031.6000 24.200119 -1192100.0
487 10022 New York, NY, United States Midtown Manhattan 40.75802 -73.96125 1000 500 200 0 90 1125 0 NA 2031600 166075.00 2031.6000 12.233027 -370850.0
488 10022 New York, NY, United States Midtown Manhattan 40.76011 -73.97051 1000 116 100 0 2 1125 28 89 2031600 46355.00 2031.6000 43.826987 -1568050.0
489 10022 New York, NY, United States Midtown Manhattan 40.75893 -73.96751 1000 290 100 60 4 7 1 80 2031600 98367.50 2031.6000 20.653163 -1047925.0
490 10022 New York, NY, United States Midtown Manhattan 40.75632 -73.96795 1000 235 200 0 30 1125 0 NA 2031600 93531.25 2031.6000 21.721083 -1096287.5
491 10022 New York, NY, United States Midtown Manhattan 40.75686 -73.96723 1000 230 150 0 180 365 0 NA 2031600 84862.50 2031.6000 23.939903 -1182975.0
492 10022 New York, NY, United States Midtown Manhattan 40.75569 -73.96679 1000 150 150 0 30 1125 1 100 2031600 62962.50 2031.6000 32.266826 -1401975.0
493 10022 New York, NY, United States Midtown Manhattan 40.75505 -73.96714 1000 400 100 0 1 1125 0 NA 2031600 124100.00 2031.6000 16.370669 -790600.0
494 10022 New York, NY, United States Midtown Manhattan 40.75828 -73.96286 1000 220 120 10 1 1125 116 86 2031600 78475.00 2031.6000 25.888500 -1246850.0
495 10022 New York, NY, United States Midtown Manhattan 40.75697 -73.96312 1000 340 250 0 30 500 0 NA 2031600 129575.00 2031.6000 15.678950 -735850.0
496 10022 New York, NY, United States Upper East Side Manhattan 40.76074 -73.96015 1000 340 200 0 30 1125 0 NA 2031600 122275.00 2031.6000 16.615007 -808850.0
497 10022 New York, NY, United States Midtown Manhattan 40.75905 -73.96142 1000 475 175 0 30 1125 0 NA 2031600 155581.25 2031.6000 13.058129 -475787.5
498 10022 New York, NY, United States Midtown Manhattan 40.75565 -73.96340 1000 330 200 0 30 1125 0 NA 2031600 119537.50 2031.6000 16.995504 -836225.0
499 10022 New York, NY, United States Midtown Manhattan 40.75573 -73.96835 1000 150 150 0 30 360 7 89 2031600 62962.50 2031.6000 32.266826 -1401975.0
500 10022 New York, NY, United States Midtown Manhattan 40.75607 -73.96768 1000 325 99 35 4 1111 4 85 2031600 105977.75 2031.6000 19.170062 -971822.5
501 10022 New York, NY, United States Midtown Manhattan 40.75568 -73.96474 1000 300 200 0 30 1125 0 NA 2031600 111325.00 2031.6000 18.249270 -918350.0
502 10022 New York, NY, United States Midtown Manhattan 40.75508 -73.96379 1000 220 250 0 30 1125 0 NA 2031600 96725.00 2031.6000 21.003877 -1064350.0
503 10022 New York, NY, United States Upper East Side Manhattan 40.75993 -73.96056 1000 198 200 0 30 1125 0 NA 2031600 83402.50 2031.6000 24.358982 -1197575.0
504 10022 New York, NY, United States Midtown Manhattan 40.75643 -73.96375 1000 300 250 0 30 1125 1 60 2031600 118625.00 2031.6000 17.126238 -845350.0
505 10022 New York, NY, United States Midtown Manhattan 40.75734 -73.96727 1000 150 150 0 30 1125 1 100 2031600 62962.50 2031.6000 32.266826 -1401975.0
506 10022 New York, NY, United States Midtown Manhattan 40.75615 -73.96490 1000 355 185 0 30 365 0 NA 2031600 124191.25 2031.6000 16.358640 -789687.5
507 10022 New York, NY, United States Midtown Manhattan 40.75549 -73.96938 1000 350 175 5 3 1125 0 NA 2031600 121727.50 2031.6000 16.689737 -814325.0
508 10022 New York, NY, United States Midtown Manhattan 40.76094 -73.97318 1000 599 130 45 5 1125 4 100 2031600 186241.25 2031.6000 10.908432 -169187.5
510 10022 New York, NY, United States Midtown Manhattan 40.75688 -73.96815 1000 150 150 0 30 365 9 76 2031600 62962.50 2031.6000 32.266826 -1401975.0
511 10022 New York, NY, United States Midtown Manhattan 40.75500 -73.96562 1000 325 75 95 3 21 9 80 2031600 106853.75 2031.6000 19.012903 -963062.5
512 10022 New York, NY, United States Upper East Side Manhattan 40.76163 -73.96523 1000 149 150 0 30 1125 1 80 2031600 62688.75 2031.6000 32.407729 -1404712.5
513 10022 New York, NY, United States Midtown Manhattan 40.75424 -73.96416 1000 300 250 0 30 1125 0 NA 2031600 118625.00 2031.6000 17.126238 -845350.0
514 10022 New York, NY, United States Midtown Manhattan 40.75911 -73.97011 1000 479 130 0 2 31 3 80 2031600 150106.25 2031.6000 13.534413 -530537.5
515 10022 New York, NY, United States Midtown Manhattan 40.75690 -73.96408 1000 115 100 0 30 365 1 100 2031600 46081.25 2031.6000 44.087346 -1570787.5
516 10022 New York, NY, United States Midtown Manhattan 40.75392 -73.96862 1000 459 145 0 2 31 0 NA 2031600 146821.25 2031.6000 13.837234 -563387.5
517 10022 New York, NY, United States Midtown Manhattan 40.75510 -73.96507 1000 385 200 0 30 1125 0 NA 2031600 134593.75 2031.6000 15.094312 -685662.5
518 10022 New York, NY, United States Upper East Side Manhattan 40.76203 -73.96607 1000 378 119 0 1 1125 72 96 2031600 120851.50 2031.6000 16.810714 -823085.0
519 10022 New York, NY, United States Midtown Manhattan 40.75726 -73.96671 1000 180 100 0 28 1125 0 NA 2031600 63875.00 2031.6000 31.805871 -1392850.0
520 10022 New York, NY, United States Midtown Manhattan 40.75523 -73.96342 1000 300 200 0 30 1125 0 NA 2031600 111325.00 2031.6000 18.249270 -918350.0
521 10022 New York, NY, United States Midtown Manhattan 40.75988 -73.96591 1000 325 100 15 5 16 0 NA 2031600 104663.75 2031.6000 19.410732 -984962.5
522 10022 New York, NY, United States Midtown Manhattan 40.76152 -73.97176 1000 449 150 50 5 1125 2 100 2031600 148463.75 2031.6000 13.684148 -546962.5
524 10022 New York, NY, United States Midtown Manhattan 40.75823 -73.96509 1000 290 80 0 1 1125 0 NA 2031600 91067.50 2031.6000 22.308727 -1120925.0
525 10022 New York, NY, United States Midtown Manhattan 40.75535 -73.96469 1000 340 250 0 30 500 0 NA 2031600 129575.00 2031.6000 15.678950 -735850.0
526 10022 New York, NY, United States Midtown Manhattan 40.75759 -73.96902 1000 230 175 0 30 1125 0 NA 2031600 88512.50 2031.6000 22.952690 -1146475.0
527 10022 New York, NY, United States Midtown Manhattan 40.75547 -73.96248 1000 300 250 0 30 1125 0 NA 2031600 118625.00 2031.6000 17.126238 -845350.0
528 10022 New York, NY, United States Upper East Side Manhattan 40.76026 -73.96204 1000 152 200 0 30 360 1 100 2031600 70810.00 2031.6000 28.690863 -1323500.0
529 10022 New York, NY, United States Midtown Manhattan 40.75878 -73.97069 1000 409 150 50 1 1125 87 94 2031600 137513.75 2031.6000 14.773795 -656462.5
531 10022 New York, NY, United States Upper East Side Manhattan 40.76263 -73.96881 1000 265 147 50 6 1125 33 92 2031600 97655.75 2031.6000 20.803690 -1055042.5
532 10022 New York, NY, United States Midtown Manhattan 40.75879 -73.96413 1000 399 125 20 1 1125 87 85 2031600 128936.25 2031.6000 15.756624 -742237.5
533 10022 New York, NY, United States Midtown Manhattan 40.75494 -73.96522 1000 220 200 0 30 1125 0 NA 2031600 89425.00 2031.6000 22.718479 -1137350.0
534 10022 New York, NY, United States Midtown Manhattan 40.75709 -73.96972 1000 299 30 0 2 1125 7 77 2031600 86231.25 2031.6000 23.559904 -1169287.5
535 10022 New York, NY, United States Midtown Manhattan 40.75587 -73.96856 1000 115 100 0 30 365 0 NA 2031600 46081.25 2031.6000 44.087346 -1570787.5
536 10023 New York, NY, United States Upper West Side Manhattan 40.77150 -73.98770 1000 240 120 25 3 1125 0 NA 2142300 85045.00 2142.3000 25.190193 -1291850.0
537 10023 New York, NY, United States Upper West Side Manhattan 40.77054 -73.98344 1000 290 100 0 30 1125 2 60 2142300 93987.50 2142.3000 22.793457 -1202425.0
538 10023 New York, NY, United States Upper West Side Manhattan 40.77219 -73.98991 1000 400 0 0 2 21 0 NA 2142300 109500.00 2142.3000 19.564384 -1047300.0
539 10023 New York, NY, United States Upper West Side Manhattan 40.77791 -73.98043 1000 275 300 0 30 500 0 NA 2142300 119081.25 2142.3000 17.990238 -951487.5
540 10023 New York, NY, United States Upper West Side Manhattan 40.77907 -73.97887 1000 300 150 0 2 1125 2 100 2142300 104025.00 2142.3000 20.594088 -1102050.0
541 10023 New York, NY, United States Upper West Side Manhattan 40.77547 -73.98154 1000 225 50 0 4 9 10 100 2142300 68893.75 2142.3000 31.095709 -1453362.5
542 10023 New York, NY, United States Upper West Side Manhattan 40.77536 -73.98952 1000 280 200 0 30 1125 9 93 2142300 105850.00 2142.3000 20.239017 -1083800.0
543 10023 New York, NY, United States Upper West Side Manhattan 40.77509 -73.98159 1000 187 180 50 3 1125 7 97 2142300 81121.25 2142.3000 26.408617 -1331087.5
544 10023 New York, NY, United States Upper West Side Manhattan 40.77409 -73.98031 1000 128 40 45 7 12 71 97 2142300 44165.00 2142.3000 48.506736 -1700650.0
545 10023 New York, NY, United States Upper West Side Manhattan 40.77771 -73.98244 1000 481 200 0 30 1125 0 NA 2142300 160873.75 2142.3000 13.316654 -533562.5
546 10023 New York, NY, United States Midtown Manhattan 40.76811 -73.98181 1000 95 50 0 3 1125 62 89 2142300 33306.25 2142.3000 64.321261 -1809237.5
547 10023 New York, NY, United States Upper West Side Manhattan 40.78130 -73.98319 1000 205 100 75 30 1125 20 96 2142300 76193.75 2142.3000 28.116479 -1380362.5
548 10023 New York, NY, United States Upper West Side Manhattan 40.77706 -73.98383 1000 250 125 0 15 1125 0 NA 2142300 86687.50 2142.3000 24.712906 -1275425.0
549 10023 New York, NY, United States Upper West Side Manhattan 40.77438 -73.98717 1000 300 150 0 30 1125 0 NA 2142300 104025.00 2142.3000 20.594088 -1102050.0
550 10023 New York, NY, United States Upper West Side Manhattan 40.77440 -73.98740 1000 275 200 0 30 1124 21 87 2142300 104481.25 2142.3000 20.504157 -1097487.5
551 10023 New York, NY, United States Upper West Side Manhattan 40.77565 -73.98684 1000 389 260 50 6 1125 0 NA 2142300 148098.75 2142.3000 14.465348 -661312.5
552 10023 New York, NY, United States Upper West Side Manhattan 40.77775 -73.98485 1000 380 0 0 3 12 11 100 2142300 104025.00 2142.3000 20.594088 -1102050.0
553 10023 New York, NY, United States Upper West Side Manhattan 40.77396 -73.98782 1000 225 175 0 30 1124 20 95 2142300 87143.75 2142.3000 24.583519 -1270862.5
554 10023 New York, NY, United States Upper West Side Manhattan 40.77824 -73.98325 1000 275 75 0 3 1125 0 NA 2142300 86231.25 2142.3000 24.843662 -1279987.5
555 10023 New York, NY, United States Upper West Side Manhattan 40.77757 -73.98579 1000 236 80 75 1 365 4 95 2142300 81760.00 2142.3000 26.202299 -1324700.0
556 10023 New York, NY, United States Upper West Side Manhattan 40.77384 -73.98917 1000 260 200 0 30 1125 6 100 2142300 100375.00 2142.3000 21.342964 -1138550.0
557 10023 New York, NY, United States Upper West Side Manhattan 40.77608 -73.97614 1000 340 100 0 6 1125 1 100 2142300 107675.00 2142.3000 19.895983 -1065550.0
558 10023 New York, NY, United States Upper West Side Manhattan 40.76996 -73.98551 1000 375 200 0 30 1125 0 NA 2142300 131856.25 2142.3000 16.247239 -823737.5
559 10023 New York, NY, United States Upper West Side Manhattan 40.78085 -73.97508 1000 153 100 0 30 30 0 NA 2142300 56483.75 2142.3000 37.927723 -1577462.5
560 10023 New York, NY, United States Upper West Side Manhattan 40.77673 -73.98011 1000 200 100 0 5 1125 0 NA 2142300 69350.00 2142.3000 30.891132 -1448800.0
561 10023 New York, NY, United States Upper West Side Manhattan 40.77654 -73.97694 1000 400 140 0 1 1125 0 NA 2142300 129940.00 2142.3000 16.486840 -842900.0
562 10023 New York, NY, United States Upper West Side Manhattan 40.77684 -73.97979 1000 175 150 0 5 13 2 100 2142300 69806.25 2142.3000 30.689229 -1444237.5
563 10023 New York, NY, United States Upper West Side Manhattan 40.77600 -73.98815 1000 300 200 0 30 1124 7 91 2142300 111325.00 2142.3000 19.243656 -1029050.0
564 10023 New York, NY, United States Upper West Side Manhattan 40.77849 -73.98527 1000 374 200 0 30 60 16 95 2142300 131582.50 2142.3000 16.281040 -826475.0
566 10023 New York, NY, United States Upper West Side Manhattan 40.77388 -73.98798 1000 275 200 0 30 1124 0 NA 2142300 104481.25 2142.3000 20.504157 -1097487.5
567 10023 New York, NY, United States Upper West Side Manhattan 40.77823 -73.97637 1000 235 120 40 6 30 27 92 2142300 84771.25 2142.3000 25.271540 -1294587.5
568 10023 New York, NY, United States Upper West Side Manhattan 40.77476 -73.98947 1000 320 200 0 30 1125 8 98 2142300 116800.00 2142.3000 18.341610 -974300.0
569 10023 New York, NY, United States Upper West Side Manhattan 40.76989 -73.98229 1000 220 100 30 30 1125 4 95 2142300 77015.00 2142.3000 27.816659 -1372150.0
570 10023 New York, NY, United States Upper West Side Manhattan 40.77852 -73.98577 1000 155 100 12 5 1125 24 96 2142300 57907.25 2142.3000 36.995368 -1563227.5
571 10023 New York, NY, United States Upper West Side Manhattan 40.77424 -73.98827 1000 260 200 0 30 1125 7 93 2142300 100375.00 2142.3000 21.342964 -1138550.0
572 10023 New York, NY, United States Upper West Side Manhattan 40.77198 -73.98931 1000 220 100 0 30 60 0 NA 2142300 74825.00 2142.3000 28.630805 -1394050.0
573 10023 New York, NY, United States Upper West Side Manhattan 40.77055 -73.98615 1000 333 200 0 30 1125 0 NA 2142300 120358.75 2142.3000 17.799287 -938712.5
574 10023 New York, NY, United States Upper West Side Manhattan 40.78305 -73.98398 1000 165 100 75 30 1125 16 95 2142300 65243.75 2142.3000 32.835329 -1489862.5
575 10023 New York, NY, United States Upper West Side Manhattan 40.77578 -73.98923 1000 255 250 0 30 1125 5 100 2142300 106306.25 2142.3000 20.152155 -1079237.5
576 10023 New York, NY, United States Upper West Side Manhattan 40.77517 -73.98829 1000 300 110 0 3 1125 4 100 2142300 98185.00 2142.3000 21.819015 -1160450.0
577 10023 New York, NY, United States Upper West Side Manhattan 40.77048 -73.98252 1000 250 100 40 3 20 11 98 2142300 85957.50 2142.3000 24.922782 -1282725.0
578 10023 New York, NY, United States Upper West Side Manhattan 40.78004 -73.98314 1000 210 90 0 2 1125 11 100 2142300 70627.50 2142.3000 30.332378 -1436025.0
579 10023 New York, NY, United States Upper West Side Manhattan 40.78111 -73.97739 1000 93 80 25 14 95 88 96 2142300 38963.75 2142.3000 54.981874 -1752662.5
580 10023 New York, NY, United States Upper West Side Manhattan 40.77809 -73.97962 1000 185 250 0 7 1125 0 NA 2142300 87143.75 2142.3000 24.583519 -1270862.5
581 10023 New York, NY, United States Upper West Side Manhattan 40.77511 -73.99005 1000 295 0 0 2 1125 26 99 2142300 80756.25 2142.3000 26.527978 -1334737.5
582 10023 New York, NY, United States Upper West Side Manhattan 40.77890 -73.98527 1000 250 100 0 10 50 5 100 2142300 83037.50 2142.3000 25.799187 -1311925.0
583 10023 New York, NY, United States Upper West Side Manhattan 40.78242 -73.98381 1000 400 150 0 3 1125 32 100 2142300 131400.00 2142.3000 16.303653 -828300.0
584 10023 New York, NY, United States Upper West Side Manhattan 40.77817 -73.97844 1000 200 100 0 1 1125 0 NA 2142300 69350.00 2142.3000 30.891132 -1448800.0
585 10023 New York, NY, United States Upper West Side Manhattan 40.77799 -73.98205 1000 220 100 0 1 1125 2 100 2142300 74825.00 2142.3000 28.630805 -1394050.0
586 10023 New York, NY, United States Upper West Side Manhattan 40.77728 -73.98062 1000 299 300 0 30 500 0 NA 2142300 125651.25 2142.3000 17.049572 -885787.5
587 10023 New York, NY, United States Upper West Side Manhattan 40.77833 -73.98469 1000 452 200 0 30 1125 1 100 2142300 152935.00 2142.3000 14.007912 -612950.0
588 10023 New York, NY, United States Upper West Side Manhattan 40.77119 -73.98769 1000 250 120 30 3 1125 1 100 2142300 88147.50 2142.3000 24.303582 -1260825.0
589 10023 New York, NY, United States Upper West Side Manhattan 40.77468 -73.98184 1000 180 100 0 2 1125 5 92 2142300 63875.00 2142.3000 33.538943 -1503550.0
590 10023 New York, NY, United States Upper West Side Manhattan 40.77838 -73.97851 1000 600 100 100 3 7 0 NA 2142300 186150.00 2142.3000 11.508461 -280800.0
591 10023 New York, NY, United States Upper West Side Manhattan 40.77860 -73.97578 1000 350 120 0 7 20 1 NA 2142300 113332.50 2142.3000 18.902786 -1008975.0
592 10023 New York, NY, United States Upper West Side Manhattan 40.77396 -73.98420 1000 400 120 0 2 1125 66 92 2142300 127020.00 2142.3000 16.865848 -872100.0
593 10023 New York, NY, United States Upper West Side Manhattan 40.77725 -73.98407 1000 250 200 0 30 1125 0 NA 2142300 97637.50 2142.3000 21.941365 -1165925.0
594 10023 New York, NY, United States Upper West Side Manhattan 40.78286 -73.98339 1000 265 100 75 30 1125 14 93 2142300 92618.75 2142.3000 23.130306 -1216112.5
595 10023 New York, NY, United States Upper West Side Manhattan 40.77900 -73.98319 1000 200 175 0 30 1125 0 NA 2142300 80300.00 2142.3000 26.678705 -1339300.0
596 10023 New York, NY, United States Upper West Side Manhattan 40.77569 -73.98028 1000 250 100 0 1 5 3 93 2142300 83037.50 2142.3000 25.799187 -1311925.0
597 10023 New York, NY, United States Upper West Side Manhattan 40.77483 -73.98973 1000 200 175 0 30 1125 1 80 2142300 80300.00 2142.3000 26.678705 -1339300.0
598 10023 New York, NY, United States Upper West Side Manhattan 40.77396 -73.98925 1000 260 200 0 30 1125 3 93 2142300 100375.00 2142.3000 21.342964 -1138550.0
599 10023 New York, NY, United States Upper West Side Manhattan 40.77537 -73.98938 1000 300 200 0 30 1125 0 NA 2142300 111325.00 2142.3000 19.243656 -1029050.0
600 10023 New York, NY, United States Upper West Side Manhattan 40.77713 -73.97758 1000 325 99 0 1 1125 43 87 2142300 103422.75 2142.3000 20.714011 -1108072.5
601 10023 New York, NY, United States Upper West Side Manhattan 40.78012 -73.97874 1000 250 0 0 2 60 0 NA 2142300 68437.50 2142.3000 31.303014 -1457925.0
602 10023 New York, NY, United States Upper West Side Manhattan 40.77345 -73.98774 1000 89 49 35 10 365 10 94 2142300 34072.75 2142.3000 62.874291 -1801572.5
603 10023 New York, NY, United States Upper West Side Manhattan 40.77576 -73.98883 1000 290 200 0 30 1125 4 100 2142300 108587.50 2142.3000 19.728790 -1056425.0
604 10023 New York, NY, United States Upper West Side Manhattan 40.76984 -73.98225 1000 200 50 0 1 1125 1 100 2142300 62050.00 2142.3000 34.525383 -1521800.0
605 10023 New York, NY, United States Upper West Side Manhattan 40.78147 -73.98315 1000 250 100 75 30 1125 13 95 2142300 88512.50 2142.3000 24.203361 -1257175.0
606 10023 New York, NY, United States Upper West Side Manhattan 40.77912 -73.98029 1000 220 100 0 30 33 1 100 2142300 74825.00 2142.3000 28.630805 -1394050.0
607 10023 New York, NY, United States Upper West Side Manhattan 40.77812 -73.98067 1000 280 100 50 1 1125 1 80 2142300 94900.00 2142.3000 22.574289 -1193300.0
608 10023 New York, NY, United States Upper West Side Manhattan 40.77796 -73.98191 1000 230 0 0 30 1125 0 NA 2142300 62962.50 2142.3000 34.025015 -1512675.0
609 10023 New York, NY, United States Upper West Side Manhattan 40.77055 -73.98613 1000 374 200 0 60 1125 0 NA 2142300 131582.50 2142.3000 16.281040 -826475.0
610 10023 New York, NY, United States Upper West Side Manhattan 40.77538 -73.98814 1000 300 200 0 30 1124 7 94 2142300 111325.00 2142.3000 19.243656 -1029050.0
611 10023 New York, NY, United States Upper West Side Manhattan 40.77892 -73.98238 1000 499 150 50 30 60 64 98 2142300 162151.25 2142.3000 13.211739 -520787.5
612 10023 New York, NY, United States Upper West Side Manhattan 40.77670 -73.98291 1000 466 200 0 30 1125 0 NA 2142300 156767.50 2142.3000 13.665460 -574625.0
613 10023 New York, NY, United States Upper West Side Manhattan 40.77794 -73.97699 1000 400 100 0 1 1125 0 NA 2142300 124100.00 2142.3000 17.262691 -901300.0
614 10025 New York, NY, United States Upper West Side Manhattan 40.79903 -73.96451 1000 249 75 50 2 60 80 99 1431000 82763.75 1431.0000 17.290178 -603362.5
615 10025 New York, NY, United States Upper West Side Manhattan 40.79321 -73.96823 1000 380 75 50 3 1125 1 100 1431000 118625.00 1431.0000 12.063224 -244750.0
616 10025 New York, NY, United States Upper West Side Manhattan 40.79795 -73.96156 1000 299 100 25 4 1125 7 90 1431000 98276.25 1431.0000 14.560995 -448237.5
618 10025 New York, NY, United States Upper West Side Manhattan 40.78852 -73.96746 1000 390 180 40 5 200 108 96 1431000 135962.50 1431.0000 10.524961 -71375.0
619 10025 New York, NY, United States Upper West Side Manhattan 40.80098 -73.96025 1000 99 30 30 1 1125 45 84 1431000 33671.25 1431.0000 42.499165 -1094287.5
620 10025 New York, NY, United States Upper West Side Manhattan 40.80005 -73.97010 1000 295 120 75 3 30 3 100 1431000 103751.25 1431.0000 13.792605 -393487.5
621 10025 New York, NY, United States Upper West Side Manhattan 40.80220 -73.96660 1000 325 0 75 7 25 8 93 1431000 94443.75 1431.0000 15.151876 -486562.5
622 10025 New York, NY, United States Morningside Heights Manhattan 40.80692 -73.96434 1000 120 60 0 4 1125 2 100 1431000 41610.00 1431.0000 34.390771 -1014900.0
623 10025 New York, NY, United States Upper West Side Manhattan 40.80001 -73.96459 1000 180 85 10 2 1125 15 89 1431000 62415.00 1431.0000 22.927181 -806850.0
624 10025 New York, NY, United States Upper West Side Manhattan 40.79866 -73.96810 1000 460 150 50 4 1125 11 93 1431000 151475.00 1431.0000 9.447104 83750.0
625 10025 New York, NY, United States Upper West Side Manhattan 40.78802 -73.97253 1000 250 120 25 2 1125 0 NA 1431000 87782.50 1431.0000 16.301655 -553175.0
626 10025 New York, NY, United States Morningside Heights Manhattan 40.80700 -73.96452 1000 220 90 10 2 1125 6 100 1431000 74095.00 1431.0000 19.313044 -690050.0
627 10025 New York, NY, United States Upper West Side Manhattan 40.79328 -73.96817 1000 250 180 0 31 1125 0 NA 1431000 94717.50 1431.0000 15.108085 -483825.0
628 10025 New York, NY, United States Upper West Side Manhattan 40.79407 -73.97513 1000 160 100 0 4 365 75 91 1431000 58400.00 1431.0000 24.503425 -847000.0
629 10025 New York, NY, United States Upper West Side Manhattan 40.80121 -73.96163 1000 200 250 0 31 1125 2 100 1431000 91250.00 1431.0000 15.682192 -518500.0
630 10025 New York, NY, United States Upper West Side Manhattan 40.79770 -73.96115 1000 330 120 0 4 1125 9 84 1431000 107857.50 1431.0000 13.267506 -352425.0
631 10025 New York, NY, United States Upper West Side Manhattan 40.79210 -73.97031 1000 85 100 0 2 7 3 100 1431000 37868.75 1431.0000 37.788414 -1052312.5
632 10025 New York, NY, United States Upper West Side Manhattan 40.80300 -73.96459 1000 150 45 0 1 1125 0 NA 1431000 47632.50 1431.0000 30.042513 -954675.0
633 10025 New York, NY, United States Upper West Side Manhattan 40.79595 -73.97485 1000 380 40 0 3 1125 2 100 1431000 109865.00 1431.0000 13.025076 -332350.0
634 10025 New York, NY, United States Upper West Side Manhattan 40.79233 -73.96430 1000 950 100 0 4 1125 6 100 1431000 274662.50 1431.0000 5.210031 1315625.0
635 10025 New York, NY, United States Morningside Heights Manhattan 40.80395 -73.96436 1000 600 200 50 1 1125 0 NA 1431000 197100.00 1431.0000 7.260274 540000.0
636 10025 New York, NY, United States Upper West Side Manhattan 40.79401 -73.96390 1000 228 200 0 7 1125 1 100 1431000 91615.00 1431.0000 15.619713 -514850.0
637 10025 New York, NY, United States Upper West Side Manhattan 40.80007 -73.95981 1000 234 100 40 1 30 27 96 1431000 81577.50 1431.0000 17.541601 -615225.0
639 10025 New York, NY, United States Upper West Side Manhattan 40.79355 -73.96752 1000 200 200 0 31 1125 0 NA 1431000 83950.00 1431.0000 17.045861 -591500.0
641 10025 New York, NY, United States Morningside Heights Manhattan 40.80815 -73.96779 1000 170 0 0 30 100 4 100 1431000 46537.50 1431.0000 30.749396 -965625.0
642 10025 New York, NY, United States Upper West Side Manhattan 40.79733 -73.96104 1000 90 50 0 5 1125 0 NA 1431000 31937.50 1431.0000 44.806262 -1111625.0
643 10025 New York, NY, United States Morningside Heights Manhattan 40.80647 -73.96576 1000 573 135 45 3 1125 1 100 1431000 179853.75 1431.0000 7.956465 367537.5
644 10025 New York, NY, United States Upper West Side Manhattan 40.80237 -73.96695 1000 120 100 0 20 30 0 NA 1431000 47450.00 1431.0000 30.158061 -956500.0
645 10025 New York, NY, United States Upper West Side Manhattan 40.79782 -73.97179 1000 195 30 30 2 1125 1 80 1431000 59951.25 1431.0000 23.869394 -831487.5
646 10025 New York, NY, United States Upper West Side Manhattan 40.80273 -73.96386 1000 300 125 50 1 1125 4 100 1431000 104025.00 1431.0000 13.756309 -390750.0
647 10025 New York, NY, United States Upper West Side Manhattan 40.79629 -73.96523 1000 225 100 0 59 1125 0 NA 1431000 76193.75 1431.0000 18.781068 -669062.5
648 10025 New York, NY, United States Upper West Side Manhattan 40.79478 -73.97474 1000 900 100 0 1 1125 0 NA 1431000 260975.00 1431.0000 5.483284 1178750.0
649 10025 New York, NY, United States Upper West Side Manhattan 40.79390 -73.97485 1000 290 100 0 7 1125 1 100 1431000 93987.50 1431.0000 15.225429 -491125.0
650 10025 New York, NY, United States Upper West Side Manhattan 40.79482 -73.96639 1000 200 200 0 31 1125 0 NA 1431000 83950.00 1431.0000 17.045861 -591500.0
651 10025 New York, NY, United States Upper West Side Manhattan 40.79638 -73.96332 1000 125 200 20 30 1125 1 60 1431000 64878.75 1431.0000 22.056528 -782212.5
652 10025 New York, NY, United States Upper West Side Manhattan 40.80014 -73.96039 1000 325 95 0 4 1125 17 96 1431000 102838.75 1431.0000 13.914988 -402612.5
653 10025 New York, NY, United States Morningside Heights Manhattan 40.80608 -73.96397 1000 189 100 0 10 1125 2 100 1431000 66338.75 1431.0000 21.571103 -767612.5
654 10025 New York, NY, United States Upper West Side Manhattan 40.79086 -73.96683 1000 439 180 40 5 1125 79 95 1431000 149376.25 1431.0000 9.579836 62762.5
655 10025 New York, NY, United States Upper West Side Manhattan 40.79114 -73.96710 1000 175 75 0 4 1125 11 100 1431000 58856.25 1431.0000 24.313476 -842437.5
656 10025 New York, NY, United States Upper West Side Manhattan 40.80249 -73.96588 1000 335 89 25 5 365 5 100 1431000 106525.25 1431.0000 13.433435 -365747.5
657 10025 New York, NY, United States Upper West Side Manhattan 40.79473 -73.96744 1000 350 100 0 30 1125 2 90 1431000 110412.50 1431.0000 12.960489 -326875.0
658 10025 New York, NY, United States Upper West Side Manhattan 40.79037 -73.97195 1000 200 100 0 4 14 4 100 1431000 69350.00 1431.0000 20.634463 -737500.0
659 10025 New York, NY, United States Upper West Side Manhattan 40.80021 -73.96634 1000 195 30 15 1 1125 0 NA 1431000 58856.25 1431.0000 24.313476 -842437.5
660 10025 New York, NY, United States Upper West Side Manhattan 40.80158 -73.96182 1000 100 100 0 1 1125 1 100 1431000 41975.00 1431.0000 34.091721 -1011250.0
661 10025 New York, NY, United States Upper West Side Manhattan 40.79737 -73.96217 1000 180 50 0 3 1125 0 NA 1431000 56575.00 1431.0000 25.293858 -865250.0
662 10025 New York, NY, United States Upper West Side Manhattan 40.79367 -73.97073 1000 150 50 50 1 10 1 100 1431000 52012.50 1431.0000 27.512617 -910875.0
663 10025 New York, NY, United States Upper West Side Manhattan 40.79584 -73.96242 1000 135 200 20 30 1125 5 100 1431000 67616.25 1431.0000 21.163552 -754837.5
664 10025 New York, NY, United States Upper West Side Manhattan 40.79838 -73.97076 1000 240 60 25 5 1125 0 NA 1431000 76285.00 1431.0000 18.758603 -668150.0
665 10025 New York, NY, United States Upper West Side Manhattan 40.79772 -73.96213 1000 335 95 0 4 1124 59 98 1431000 105576.25 1431.0000 13.554185 -375237.5
666 10025 New York, NY, United States Upper West Side Manhattan 40.80006 -73.96049 1000 250 100 0 31 365 188 93 1431000 83037.50 1431.0000 17.233178 -600625.0
667 10025 New York, NY, United States Upper West Side Manhattan 40.79181 -73.96747 1000 350 175 50 2 4 2 100 1431000 125012.50 1431.0000 11.446855 -180875.0
668 10025 New York, NY, United States Upper West Side Manhattan 40.80302 -73.96511 1000 110 100 0 10 90 0 NA 1431000 44712.50 1431.0000 32.004473 -983875.0
669 10025 New York, NY, United States Upper West Side Manhattan 40.79882 -73.96382 1000 200 100 0 1 1125 0 NA 1431000 69350.00 1431.0000 20.634463 -737500.0
670 10025 New York, NY, United States Upper West Side Manhattan 40.80173 -73.96175 1000 375 100 0 2 1125 40 87 1431000 117256.25 1431.0000 12.204040 -258437.5
671 10025 New York, NY, United States Morningside Heights Manhattan 40.80672 -73.96547 1000 150 100 0 4 7 2 100 1431000 55662.50 1431.0000 25.708511 -874375.0
672 10025 New York, NY, United States Upper West Side Manhattan 40.79527 -73.96695 1000 165 60 0 5 1125 5 100 1431000 53928.75 1431.0000 26.535011 -891712.5
673 10025 New York, NY, United States Upper West Side Manhattan 40.80238 -73.96737 1000 140 50 0 1 1125 8 85 1431000 45625.00 1431.0000 31.364384 -974750.0
674 10025 New York, NY, United States Upper West Side Manhattan 40.80047 -73.96064 1000 200 100 40 1 1125 22 97 1431000 72270.00 1431.0000 19.800747 -708300.0
675 10025 New York, NY, United States Upper West Side Manhattan 40.80065 -73.96944 1000 225 100 0 5 1125 18 96 1431000 76193.75 1431.0000 18.781068 -669062.5
676 10025 New York, NY, United States Upper West Side Manhattan 40.79282 -73.97353 1000 360 100 0 6 1125 0 NA 1431000 113150.00 1431.0000 12.646929 -299500.0
677 10025 New York, NY, United States Upper West Side Manhattan 40.79765 -73.96245 1000 165 85 50 2 180 191 93 1431000 61228.75 1431.0000 23.371374 -818712.5
678 10025 New York, NY, United States Upper West Side Manhattan 40.79507 -73.97568 1000 900 100 125 1 200 7 93 1431000 270100.00 1431.0000 5.298038 1270000.0
679 10025 New York, NY, United States Upper West Side Manhattan 40.79828 -73.97231 1000 150 100 0 5 1125 6 93 1431000 55662.50 1431.0000 25.708511 -874375.0
680 10025 New York, NY, United States Upper West Side Manhattan 40.79960 -73.96210 1000 299 99 0 4 1123 114 90 1431000 96305.25 1431.0000 14.859003 -467947.5
681 10025 New York, NY, United States Morningside Heights Manhattan 40.80630 -73.96268 1000 150 50 0 7 30 2 100 1431000 48362.50 1431.0000 29.589041 -947375.0
682 10025 New York, NY, United States Morningside Heights Manhattan 40.80800 -73.96643 1000 200 135 0 1 60 0 NA 1431000 74460.00 1431.0000 19.218372 -686400.0
683 10025 New York, NY, United States Upper West Side Manhattan 40.80114 -73.96772 1000 250 100 50 30 45 17 96 1431000 86687.50 1431.0000 16.507570 -564125.0
684 10025 New York, NY, United States Upper West Side Manhattan 40.79855 -73.97170 1000 75 80 30 1 8 16 99 1431000 34401.25 1431.0000 41.597326 -1086987.5
685 10025 New York, NY, United States Upper West Side Manhattan 40.79039 -73.96789 1000 180 100 25 4 1125 9 96 1431000 65700.00 1431.0000 21.780822 -774000.0
686 10025 New York, NY, United States Upper West Side Manhattan 40.79553 -73.97388 1000 200 75 50 3 1125 3 100 1431000 69350.00 1431.0000 20.634463 -737500.0
687 10025 New York, NY, United States Upper West Side Manhattan 40.79745 -73.96916 1000 280 70 40 1 1125 1 100 1431000 89790.00 1431.0000 15.937187 -533100.0
688 10025 New York, NY, United States Upper West Side Manhattan 40.79569 -73.96583 1000 275 250 0 30 1125 1 100 1431000 111781.25 1431.0000 12.801789 -313187.5
689 10025 New York, NY, United States Morningside Heights Manhattan 40.80798 -73.96585 1000 95 100 0 7 14 0 NA 1431000 40606.25 1431.0000 35.240880 -1024937.5
690 10025 New York, NY, United States Upper West Side Manhattan 40.79505 -73.96382 1000 90 100 40 2 11 2 80 1431000 42157.50 1431.0000 33.944138 -1009425.0
691 10025 New York, NY, United States Upper West Side Manhattan 40.79589 -73.96811 1000 145 50 0 1 1125 1 100 1431000 46993.75 1431.0000 30.450858 -961062.5
692 10025 New York, NY, United States Upper West Side Manhattan 40.79095 -73.97291 1000 142 175 65 7 1125 5 96 1431000 69167.50 1431.0000 20.688907 -739325.0
693 10025 New York, NY, United States Upper West Side Manhattan 40.79820 -73.97063 1000 150 150 0 30 45 0 NA 1431000 62962.50 1431.0000 22.727814 -801375.0
694 10025 New York, NY, United States Morningside Heights Manhattan 40.80387 -73.96367 1000 200 60 0 5 9 2 100 1431000 63510.00 1431.0000 22.531885 -795900.0
695 10025 New York, NY, United States Upper West Side Manhattan 40.80009 -73.96218 1000 130 100 30 14 30 0 NA 1431000 52377.50 1431.0000 27.320892 -907225.0
696 10025 New York, NY, United States Morningside Heights Manhattan 40.80507 -73.96465 1000 290 50 0 4 1125 3 100 1431000 86687.50 1431.0000 16.507570 -564125.0
697 10025 New York, NY, United States Upper West Side Manhattan 40.80193 -73.97038 1000 250 70 25 2 1125 18 89 1431000 80482.50 1431.0000 17.780263 -626175.0
698 10025 New York, NY, United States Upper West Side Manhattan 40.79970 -73.95946 1000 330 150 0 4 40 5 96 1431000 112237.50 1431.0000 12.749749 -308625.0
699 10025 New York, NY, United States Morningside Heights Manhattan 40.80723 -73.96222 1000 50 35 50 5 180 18 100 1431000 22447.50 1431.0000 63.748747 -1206525.0
700 10025 New York, NY, United States Upper West Side Manhattan 40.79874 -73.96649 1000 220 80 50 7 30 19 98 1431000 75555.00 1431.0000 18.939845 -675450.0
701 10025 New York, NY, United States Upper West Side Manhattan 40.79412 -73.96806 1000 173 0 0 10 30 0 NA 1431000 47358.75 1431.0000 30.216169 -957412.5
702 10025 New York, NY, United States Upper West Side Manhattan 40.79264 -73.97294 1000 95 100 0 5 14 2 90 1431000 40606.25 1431.0000 35.240880 -1024937.5
703 10025 New York, NY, United States Upper West Side Manhattan 40.79069 -73.96614 1000 395 75 25 3 1125 1 100 1431000 120906.25 1431.0000 11.835616 -221937.5
704 10025 New York, NY, United States Morningside Heights Manhattan 40.80734 -73.96730 1000 250 150 0 3 14 1 80 1431000 90337.50 1431.0000 15.840598 -527625.0
705 10025 New York, NY, United States Upper West Side Manhattan 40.79456 -73.96853 1000 400 100 0 6 1125 5 100 1431000 124100.00 1431.0000 11.531023 -190000.0
706 10025 New York, NY, United States Upper West Side Manhattan 40.79820 -73.96931 1000 187 100 0 3 1125 1 100 1431000 65791.25 1431.0000 21.750613 -773087.5
707 10025 New York, NY, United States Upper West Side Manhattan 40.79576 -73.96856 1000 150 50 20 2 30 21 92 1431000 49822.50 1431.0000 28.721963 -932775.0
708 10025 New York, NY, United States Upper West Side Manhattan 40.79816 -73.96190 1000 300 100 10 2 14 45 98 1431000 97455.00 1431.0000 14.683700 -456450.0
709 10025 New York, NY, United States Upper West Side Manhattan 40.79774 -73.97274 1000 250 95 40 3 1125 5 96 1431000 85227.50 1431.0000 16.790355 -578725.0
710 10025 New York, NY, United States Upper West Side Manhattan 40.79864 -73.96364 1000 149 50 0 3 9 0 NA 1431000 48088.75 1431.0000 29.757480 -950112.5
712 10025 New York, NY, United States Morningside Heights Manhattan 40.80450 -73.96383 1000 150 80 0 6 16 1 100 1431000 52742.50 1431.0000 27.131820 -903575.0
713 10025 New York, NY, United States Upper West Side Manhattan 40.79641 -73.96191 1000 99 200 20 30 1125 2 90 1431000 57761.25 1431.0000 24.774395 -853387.5
714 10025 New York, NY, United States Morningside Heights Manhattan 40.80557 -73.96441 1000 125 100 0 5 18 1 80 1431000 48818.75 1431.0000 29.312508 -942812.5
715 10025 New York, NY, United States Upper West Side Manhattan 40.79891 -73.96446 1000 225 100 0 2 7 29 93 1431000 76193.75 1431.0000 18.781068 -669062.5
716 10025 New York, NY, United States Upper West Side Manhattan 40.79526 -73.96550 900 387 100 50 1 1125 23 99 1431000 124191.25 1590.0000 11.522551 -189087.5
717 10025 New York, NY, United States Upper West Side Manhattan 40.79837 -73.96061 1000 400 120 0 4 1125 3 87 1431000 127020.00 1431.0000 11.265942 -160800.0
718 10025 New York, NY, United States Upper West Side Manhattan 40.80107 -73.96065 1000 50 100 0 1 1125 1 100 1431000 28287.50 1431.0000 50.587715 -1148125.0
719 10025 New York, NY, United States Upper West Side Manhattan 40.79831 -73.96052 1000 202 100 25 30 1125 8 90 1431000 71722.50 1431.0000 19.951898 -713775.0
720 10025 New York, NY, United States Upper West Side Manhattan 40.79400 -73.96734 1000 310 250 0 30 1125 1 80 1431000 121362.50 1431.0000 11.791122 -217375.0
721 10025 New York, NY, United States Morningside Heights Manhattan 40.80684 -73.96404 1000 160 100 0 24 1125 10 96 1431000 58400.00 1431.0000 24.503425 -847000.0
723 10025 New York, NY, United States Upper West Side Manhattan 40.79410 -73.96314 1000 434 124 62 5 11 1 100 1431000 141437.50 1431.0000 10.117543 -16625.0
724 10025 New York, NY, United States Morningside Heights Manhattan 40.80542 -73.96230 1000 290 100 0 5 1125 0 NA 1431000 93987.50 1431.0000 15.225429 -491125.0
725 10025 New York, NY, United States Upper West Side Manhattan 40.80118 -73.96642 1000 250 100 0 5 1125 12 98 1431000 83037.50 1431.0000 17.233178 -600625.0
726 10025 New York, NY, United States Upper West Side Manhattan 40.80028 -73.96180 1000 178 88 0 32 365 132 81 1431000 61575.50 1431.0000 23.239763 -815245.0
727 10025 New York, NY, United States Upper West Side Manhattan 40.79371 -73.96708 1000 295 200 0 30 1125 2 100 1431000 109956.25 1431.0000 13.014267 -331437.5
728 10025 New York, NY, United States Morningside Heights Manhattan 40.80413 -73.96416 1000 239 100 0 2 1125 9 100 1431000 80026.25 1431.0000 17.881633 -630737.5
729 10025 New York, NY, United States Upper West Side Manhattan 40.79053 -73.96956 1000 199 200 0 5 1125 8 94 1431000 83676.25 1431.0000 17.101627 -594237.5
730 10025 New York, NY, United States Upper West Side Manhattan 40.79557 -73.97632 1000 145 250 0 59 120 0 NA 1431000 76193.75 1431.0000 18.781068 -669062.5
731 10025 New York, NY, United States Morningside Heights Manhattan 40.80596 -73.96471 1000 170 60 0 1 1125 7 97 1431000 55297.50 1431.0000 25.878204 -878025.0
732 10025 New York, NY, United States Morningside Heights Manhattan 40.80498 -73.96640 1000 250 100 0 1 1125 0 NA 1431000 83037.50 1431.0000 17.233178 -600625.0
733 10025 New York, NY, United States Upper West Side Manhattan 40.79377 -73.96586 1000 330 250 0 30 1125 1 100 1431000 126837.50 1431.0000 11.282152 -162625.0
734 10025 New York, NY, United States Morningside Heights Manhattan 40.80695 -73.96540 1000 250 100 0 7 30 0 NA 1431000 83037.50 1431.0000 17.233178 -600625.0
735 10025 New York, NY, United States Upper West Side Manhattan 40.80058 -73.96287 1000 400 129 30 5 120 11 87 1431000 130524.00 1431.0000 10.963501 -125760.0
736 10025 New York, NY, United States Upper West Side Manhattan 40.79920 -73.97158 1000 500 150 0 5 1125 3 100 1431000 158775.00 1431.0000 9.012754 156750.0
737 10025 New York, NY, United States Upper West Side Manhattan 40.79622 -73.96988 1000 425 100 0 5 9 0 NA 1431000 130943.75 1431.0000 10.928357 -121562.5
738 10028 New York, NY, United States Upper East Side Manhattan 40.77730 -73.95305 1000 260 200 0 30 1125 1 100 2083900 100375.00 2083.9000 20.761146 -1080150.0
739 10028 New York, NY, United States Upper East Side Manhattan 40.77669 -73.95283 1000 299 80 0 1 1125 4 95 2083900 93531.25 2083.9000 22.280254 -1148587.5
740 10028 New York, NY, United States Upper East Side Manhattan 40.77788 -73.95615 1000 105 25 0 1 1125 3 93 2083900 32393.75 2083.9000 64.330311 -1759962.5
741 10028 New York, NY, United States Upper East Side Manhattan 40.77593 -73.94927 1000 550 100 0 1 1125 0 NA 2083900 165162.50 2083.9000 12.617271 -432275.0
742 10028 New York, NY, United States Upper East Side Manhattan 40.77832 -73.94991 1000 225 150 0 31 1124 10 80 2083900 83493.75 2083.9000 24.958754 -1248962.5
743 10028 New York, NY, United States Upper East Side Manhattan 40.77166 -73.94665 1000 150 75 25 2 22 2 100 2083900 53837.50 2083.9000 38.707221 -1545525.0
744 10028 New York, NY, United States Upper East Side Manhattan 40.77861 -73.95015 1000 287 150 0 31 1124 6 92 2083900 100466.25 2083.9000 20.742289 -1079237.5
745 10028 New York, NY, United States Upper East Side Manhattan 40.77671 -73.95516 1000 280 100 0 30 1125 0 NA 2083900 91250.00 2083.9000 22.837260 -1171400.0
746 10028 New York, NY, United States Upper East Side Manhattan 40.77486 -73.95296 1000 899 100 0 30 1125 6 85 2083900 260701.25 2083.9000 7.993441 523112.5
747 10028 New York, NY, United States Upper East Side Manhattan 40.77860 -73.95208 1000 206 200 0 30 1125 1 100 2083900 85592.50 2083.9000 24.346759 -1227975.0
748 10028 New York, NY, United States Upper East Side Manhattan 40.77707 -73.95405 1000 349 129 37 5 1125 4 90 2083900 117073.75 2083.9000 17.799891 -913162.5
749 10028 New York, NY, United States Upper East Side Manhattan 40.77223 -73.95082 1000 350 130 15 4 1125 0 NA 2083900 115887.50 2083.9000 17.982095 -925025.0
750 10028 New York, NY, United States Upper East Side Manhattan 40.77898 -73.94983 1000 189 150 0 31 1125 7 93 2083900 73638.75 2083.9000 28.298959 -1347512.5
751 10028 New York, NY, United States Upper East Side Manhattan 40.77751 -73.95198 1000 129 79 20 2 3 25 98 2083900 48307.75 2083.9000 43.138006 -1600822.5
752 10028 New York, NY, United States Upper East Side Manhattan 40.77823 -73.95127 1000 235 150 0 31 1124 9 93 2083900 86231.25 2083.9000 24.166413 -1221587.5
753 10028 New York, NY, United States Upper East Side Manhattan 40.77766 -73.95610 1000 750 150 0 6 1125 0 NA 2083900 227212.50 2083.9000 9.171591 188225.0
754 10028 New York, NY, United States Upper East Side Manhattan 40.77878 -73.95056 1000 265 110 25 2 1124 10 96 2083900 90428.75 2083.9000 23.044662 -1179612.5
755 10028 New York, NY, United States Upper East Side Manhattan 40.77721 -73.94997 1000 300 150 0 31 1124 5 67 2083900 104025.00 2083.9000 20.032684 -1043650.0
756 10028 New York, NY, United States Upper East Side Manhattan 40.77515 -73.95173 1000 185 99 0 2 1125 3 93 2083900 65097.75 2083.9000 32.011859 -1432922.5
757 10028 New York, NY, United States Upper East Side Manhattan 40.77458 -73.94769 1000 185 100 0 30 365 0 NA 2083900 65243.75 2083.9000 31.940224 -1431462.5
758 10028 New York, NY, United States Upper East Side Manhattan 40.77341 -73.95025 1000 375 200 80 1 1125 16 100 2083900 137696.25 2083.9000 15.134036 -706937.5
759 10028 New York, NY, United States Upper East Side Manhattan 40.78013 -73.96031 1000 590 150 0 14 60 0 NA 2083900 183412.50 2083.9000 11.361821 -249775.0
760 10028 New York, NY, United States Upper East Side Manhattan 40.77352 -73.94693 1000 150 145 0 30 1125 0 NA 2083900 62232.50 2083.9000 33.485719 -1461575.0
761 10028 New York, NY, United States Upper East Side Manhattan 40.77267 -73.94735 1000 400 100 100 2 10 1 100 2083900 131400.00 2083.9000 15.859208 -769900.0
762 10028 New York, NY, United States Upper East Side Manhattan 40.77710 -73.95020 1000 245 150 0 31 1124 4 90 2083900 88968.75 2083.9000 23.422831 -1194212.5
763 10028 New York, NY, United States Upper East Side Manhattan 40.77895 -73.94974 1000 200 150 0 31 1125 3 87 2083900 76650.00 2083.9000 27.187215 -1317400.0
764 10028 New York, NY, United States Upper East Side Manhattan 40.77708 -73.95113 1000 235 150 0 31 1124 5 84 2083900 86231.25 2083.9000 24.166413 -1221587.5
765 10028 New York, NY, United States Upper East Side Manhattan 40.77316 -73.94495 1000 250 150 0 2 1125 10 96 2083900 90337.50 2083.9000 23.067940 -1180525.0
766 10028 New York, NY, United States Upper East Side Manhattan 40.77694 -73.94994 1000 250 160 0 31 1125 1 100 2083900 91797.50 2083.9000 22.701054 -1165925.0
767 10028 New York, NY, United States Upper East Side Manhattan 40.77559 -73.95033 1000 160 100 0 2 14 2 80 2083900 58400.00 2083.9000 35.683219 -1499900.0
768 10028 New York, NY, United States Upper East Side Manhattan 40.77791 -73.95362 1000 180 100 0 3 1125 22 93 2083900 63875.00 2083.9000 32.624657 -1445150.0
769 10028 New York, NY, United States Upper East Side Manhattan 40.77915 -73.95041 1000 225 150 0 31 1124 0 NA 2083900 83493.75 2083.9000 24.958754 -1248962.5
770 10028 New York, NY, United States Upper East Side Manhattan 40.77466 -73.94748 1000 150 150 0 30 365 5 80 2083900 62962.50 2083.9000 33.097479 -1454275.0
771 10028 New York, NY, United States Upper East Side Manhattan 40.77390 -73.94937 1000 370 80 60 5 1125 0 NA 2083900 117347.50 2083.9000 17.758367 -910425.0
772 10028 New York, NY, United States Upper East Side Manhattan 40.77595 -73.94969 1000 295 100 25 4 1125 0 NA 2083900 97181.25 2083.9000 21.443437 -1112087.5
773 10028 New York, NY, United States Upper East Side Manhattan 40.77716 -73.94779 1000 250 100 50 2 1125 11 90 2083900 86687.50 2083.9000 24.039221 -1217025.0
774 10028 New York, NY, United States Upper East Side Manhattan 40.77418 -73.95327 1000 275 75 0 7 1124 10 98 2083900 86231.25 2083.9000 24.166413 -1221587.5
775 10028 New York, NY, United States Upper East Side Manhattan 40.77400 -73.94932 1000 150 150 0 30 365 3 80 2083900 62962.50 2083.9000 33.097479 -1454275.0
776 10028 New York, NY, United States Upper East Side Manhattan 40.77474 -73.94943 1000 249 95 0 30 1125 0 NA 2083900 82033.75 2083.9000 25.402959 -1263562.5
777 10028 New York, NY, United States Upper East Side Manhattan 40.77219 -73.94763 1000 199 200 40 5 1125 6 96 2083900 86596.25 2083.9000 24.064552 -1217937.5
778 10028 New York, NY, United States Upper East Side Manhattan 40.77979 -73.95379 1000 260 60 0 2 1124 8 91 2083900 79935.00 2083.9000 26.069932 -1284550.0
779 10028 New York, NY, United States Upper East Side Manhattan 40.77532 -73.95132 1000 650 100 0 2 2 0 NA 2083900 192537.50 2083.9000 10.823346 -158525.0
780 10028 New York, NY, United States Upper East Side Manhattan 40.77854 -73.94984 1000 265 200 0 31 1124 7 86 2083900 101743.75 2083.9000 20.481848 -1066462.5
781 10028 New York, NY, United States Upper East Side Manhattan 40.78164 -73.95873 1000 490 150 0 14 60 1 NA 2083900 156037.50 2083.9000 13.355123 -523525.0
782 10028 New York, NY, United States Upper East Side Manhattan 40.77635 -73.95616 1000 450 130 100 5 1125 37 95 2083900 149467.50 2083.9000 13.942161 -589225.0
783 10028 New York, NY, United States Upper East Side Manhattan 40.77221 -73.94819 1000 300 100 30 2 5 19 94 2083900 98915.00 2083.9000 21.067583 -1094750.0
784 10028 New York, NY, United States Upper East Side Manhattan 40.77340 -73.95357 1000 99 150 20 30 365 6 97 2083900 50461.25 2083.9000 41.297035 -1579287.5
785 10028 New York, NY, United States Upper East Side Manhattan 40.77878 -73.94993 1000 206 200 0 31 1125 2 100 2083900 85592.50 2083.9000 24.346759 -1227975.0
786 10028 New York, NY, United States Upper East Side Manhattan 40.77710 -73.94996 1000 240 150 0 31 1124 5 92 2083900 87600.00 2083.9000 23.788813 -1207900.0
787 10028 New York, NY, United States Upper East Side Manhattan 40.77116 -73.94774 1000 299 111 42 4 1125 9 100 2083900 101123.25 2083.9000 20.607526 -1072667.5
788 10028 New York, NY, United States Upper East Side Manhattan 40.77439 -73.94965 1000 249 80 0 3 1125 1 100 2083900 79843.75 2083.9000 26.099726 -1285462.5
789 10028 New York, NY, United States Upper East Side Manhattan 40.77692 -73.95126 1000 390 275 0 30 1125 1 60 2083900 146912.50 2083.9000 14.184634 -614775.0
790 10028 New York, NY, United States Upper East Side Manhattan 40.77467 -73.95533 1000 133 150 0 30 700 11 100 2083900 58308.75 2083.9000 35.739061 -1500812.5
791 10028 New York, NY, United States Upper East Side Manhattan 40.77556 -73.95245 1000 375 100 0 4 1125 0 NA 2083900 117256.25 2083.9000 17.772187 -911337.5
792 10028 New York, NY, United States Upper East Side Manhattan 40.77427 -73.95325 1000 99 150 10 30 1125 8 90 2083900 49731.25 2083.9000 41.903230 -1586587.5
793 10028 New York, NY, United States Upper East Side Manhattan 40.77688 -73.95505 1000 250 250 0 30 1125 1 100 2083900 104937.50 2083.9000 19.858487 -1034525.0
794 10028 New York, NY, United States Upper East Side Manhattan 40.77847 -73.95371 1000 135 125 0 15 30 0 NA 2083900 55206.25 2083.9000 37.747538 -1531837.5
795 10028 New York, NY, United States Upper East Side Manhattan 40.77383 -73.94903 1000 150 150 20 60 365 5 80 2083900 64422.50 2083.9000 32.347394 -1439675.0
796 10028 New York, NY, United States Upper East Side Manhattan 40.78368 -73.94942 1000 200 150 10 30 1125 8 86 2083900 77380.00 2083.9000 26.930732 -1310100.0
797 10028 New York, NY, United States Upper East Side Manhattan 40.77717 -73.95131 1000 300 150 0 31 1124 8 80 2083900 104025.00 2083.9000 20.032684 -1043650.0
798 10028 New York, NY, United States Upper East Side Manhattan 40.77531 -73.95165 1000 151 100 0 6 7 2 100 2083900 55936.25 2083.9000 37.254911 -1524537.5
799 10028 New York, NY, United States Upper East Side Manhattan 40.77320 -73.95029 1000 340 200 0 30 1125 0 NA 2083900 122275.00 2083.9000 17.042731 -861150.0
800 10028 New York, NY, United States Upper East Side Manhattan 40.77747 -73.95193 1000 190 150 0 31 1125 4 80 2083900 73912.50 2083.9000 28.194149 -1344775.0
801 10028 New York, NY, United States Upper East Side Manhattan 40.77883 -73.95050 1000 206 200 0 30 1125 0 NA 2083900 85592.50 2083.9000 24.346759 -1227975.0
802 10028 New York, NY, United States Upper East Side Manhattan 40.77878 -73.95010 1000 180 150 0 31 1125 10 93 2083900 71175.00 2083.9000 29.278539 -1372150.0
803 10028 New York, NY, United States Upper East Side Manhattan 40.77760 -73.95277 1000 360 250 0 30 1125 1 60 2083900 135050.00 2083.9000 15.430581 -733400.0
804 10028 New York, NY, United States Upper East Side Manhattan 40.77890 -73.95554 1000 199 139 20 4 1125 1 100 2083900 76230.25 2083.9000 27.336917 -1321597.5
805 10028 New York, NY, United States Upper East Side Manhattan 40.77712 -73.95176 1000 250 150 0 31 1120 0 NA 2083900 90337.50 2083.9000 23.067940 -1180525.0
806 10028 New York, NY, United States Upper East Side Manhattan 40.77739 -73.94916 1000 393 200 0 30 1125 0 NA 2083900 136783.75 2083.9000 15.234997 -716062.5
807 10028 New York, NY, United States Upper East Side Manhattan 40.77625 -73.95580 1000 229 134 0 3 60 3 87 2083900 82252.75 2083.9000 25.335323 -1261372.5
808 10028 New York, NY, United States Upper East Side Manhattan 40.77736 -73.95156 1000 200 150 0 31 1125 2 100 2083900 76650.00 2083.9000 27.187215 -1317400.0
809 10028 New York, NY, United States Upper East Side Manhattan 40.77199 -73.94929 1000 153 100 20 2 5 3 93 2083900 57943.75 2083.9000 35.964189 -1504462.5
810 10028 New York, NY, United States Upper East Side Manhattan 40.77604 -73.95100 1000 200 25 100 2 11 8 85 2083900 65700.00 2083.9000 31.718417 -1426900.0
811 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76030 -73.99222 1000 200 100 0 3 1125 203 91 1712900 69350.00 1712.9000 24.699351 -1019400.0
812 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76364 -73.98980 1000 170 150 25 2 10 18 96 1712900 70262.50 1712.9000 24.378580 -1010275.0
813 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76149 -73.99159 1000 350 100 30 6 1125 124 92 1712900 112602.50 1712.9000 15.211918 -586875.0
814 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76077 -73.99427 1000 425 100 30 3 1125 3 100 1712900 133133.75 1712.9000 12.866009 -381562.5
815 10036 New York, NY, United States Theater District Manhattan 40.76015 -73.98497 1000 890 150 79 1 300 2 100 1712900 271304.50 1712.9000 6.313570 1000145.0
817 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76014 -73.99039 1000 150 150 0 30 365 6 80 1712900 62962.50 1712.9000 27.205082 -1083275.0
818 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76235 -73.99485 1000 500 150 50 3 360 3 100 1712900 162425.00 1712.9000 10.545790 -88650.0
819 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76020 -73.99800 1000 748 100 0 30 1125 0 NA 1712900 219365.00 1712.9000 7.808447 480750.0
820 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76371 -73.99346 1000 200 99 10 2 200 9 80 1712900 69934.00 1712.9000 24.493094 -1013560.0
821 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76261 -73.99143 1000 300 100 35 3 31 1 100 1712900 99280.00 1712.9000 17.253223 -720100.0
822 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76028 -73.99665 1000 395 100 30 3 1124 3 93 1712900 124921.25 1712.9000 13.711839 -463687.5
823 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76144 -73.99827 1000 421 100 0 30 1125 0 NA 1712900 129848.75 1712.9000 13.191502 -414412.5
824 10036 New York, NY, United States Midtown Manhattan 40.75687 -73.97321 1000 245 175 0 30 1125 1 40 1712900 92618.75 1712.9000 18.494095 -786712.5
825 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76039 -73.99002 1000 70 5 0 2 1125 11 88 1712900 19892.50 1712.9000 86.107830 -1513975.0
826 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76247 -73.99294 1000 240 120 0 4 1125 77 95 1712900 83220.00 1712.9000 20.582793 -880700.0
827 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76062 -73.99741 1000 479 100 0 30 1125 1 100 1712900 145726.25 1712.9000 11.754231 -255637.5
828 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76110 -73.99316 1000 150 100 0 4 1125 1 80 1712900 55662.50 1712.9000 30.772962 -1156275.0
829 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76182 -73.99771 1000 550 250 0 30 1125 0 NA 1712900 187062.50 1712.9000 9.156833 157725.0
830 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76035 -73.99039 1000 379 110 15 3 1125 0 NA 1712900 120906.25 1712.9000 14.167175 -503837.5
831 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76087 -73.99563 1000 365 200 0 30 1125 0 NA 1712900 129118.75 1712.9000 13.266083 -421712.5
832 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76160 -73.99677 1000 225 100 0 5 20 13 98 1712900 76193.75 1712.9000 22.480846 -950962.5
833 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76027 -73.99826 1000 399 100 0 30 1125 0 NA 1712900 123826.25 1712.9000 13.833093 -474637.5
834 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75949 -73.98825 1000 125 150 0 3 60 2 100 1712900 56118.75 1712.9000 30.522775 -1151712.5
835 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75885 -73.98996 1000 269 95 25 1 30 63 93 1712900 89333.75 1712.9000 19.174164 -819562.5
836 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75864 -73.99056 1000 499 150 0 3 1125 149 97 1712900 158501.25 1712.9000 10.806855 -127887.5
837 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76124 -73.99611 1000 450 200 50 2 1125 0 NA 1712900 156037.50 1712.9000 10.977489 -152525.0
838 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76181 -73.99855 1000 350 250 0 30 1125 0 NA 1712900 132312.50 1712.9000 12.945867 -389775.0
839 10036 New York, NY, United States Theater District Manhattan 40.75412 -73.98601 1000 119 150 99 1 90 18 99 1712900 61703.25 1712.9000 27.760288 -1095867.5
840 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76123 -73.99084 1000 229 75 25 3 1125 1 100 1712900 75463.75 1712.9000 22.698315 -958262.5
841 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76450 -73.99447 1000 200 0 0 30 365 3 100 1712900 54750.00 1712.9000 31.285845 -1165400.0
842 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75949 -73.99367 1000 250 125 30 2 1125 3 67 1712900 88877.50 1712.9000 19.272594 -824125.0
843 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76142 -73.99177 1000 272 150 35 2 1125 7 95 1712900 98915.00 1712.9000 17.316888 -723750.0
844 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76329 -73.99554 1000 130 100 0 1 1125 2 NA 1712900 50187.50 1712.9000 34.130012 -1211025.0
845 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76075 -73.99893 1000 748 100 0 30 1125 0 NA 1712900 219365.00 1712.9000 7.808447 480750.0
846 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76190 -73.99896 1000 748 100 0 30 1125 0 NA 1712900 219365.00 1712.9000 7.808447 480750.0
847 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76045 -73.99929 1000 748 100 0 30 1125 1 60 1712900 219365.00 1712.9000 7.808447 480750.0
848 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76050 -73.99455 1000 199 75 25 3 1124 110 90 1712900 67251.25 1712.9000 25.470159 -1040387.5
849 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76157 -73.99358 1000 190 150 0 30 360 1 100 1712900 73912.50 1712.9000 23.174700 -973775.0
850 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76053 -73.99809 1000 748 100 0 30 1125 0 NA 1712900 219365.00 1712.9000 7.808447 480750.0
851 10036 New York, NY, United States Theater District Manhattan 40.75746 -73.98795 1000 420 150 40 5 1125 14 93 1712900 139795.00 1712.9000 12.252942 -314950.0
852 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75923 -73.99233 1000 225 80 0 4 1125 2 100 1712900 73273.75 1712.9000 23.376721 -980162.5
853 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76470 -73.99516 1000 250 150 25 2 1125 0 NA 1712900 92162.50 1712.9000 18.585650 -791275.0
854 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76082 -73.99709 1000 385 200 0 30 1125 0 NA 1712900 134593.75 1712.9000 12.726445 -366962.5
855 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76206 -73.99370 1000 375 120 0 3 1125 3 100 1712900 120176.25 1712.9000 14.253232 -511137.5
856 10036 New York, NY, United States Theater District Manhattan 40.75942 -73.98602 1000 309 200 0 30 1125 0 NA 1712900 113788.75 1712.9000 15.053334 -575012.5
857 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76182 -73.99003 1000 200 100 0 1 1125 8 97 1712900 69350.00 1712.9000 24.699351 -1019400.0
858 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76464 -73.99403 1000 125 60 100 1 1125 45 98 1712900 50278.75 1712.9000 34.068070 -1210112.5
859 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76062 -73.99297 1000 85 60 0 3 1125 28 95 1712900 32028.75 1712.9000 53.480077 -1392612.5
860 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76250 -73.99778 1000 350 0 20 2 29 3 80 1712900 97272.50 1712.9000 17.609293 -740175.0
861 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76122 -73.99129 1000 111 70 50 1 60 136 91 1712900 44256.25 1712.9000 38.704138 -1270337.5
862 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75643 -73.99046 1000 200 100 0 7 1125 13 93 1712900 69350.00 1712.9000 24.699351 -1019400.0
863 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75994 -73.98812 1000 259 100 50 2 23 103 97 1712900 89151.25 1712.9000 19.213415 -821387.5
864 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75833 -73.99190 1000 240 150 25 2 60 14 89 1712900 89425.00 1712.9000 19.154599 -818650.0
865 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76039 -73.99028 1000 399 50 0 2 30 80 97 1712900 116526.25 1712.9000 14.699692 -547637.5
866 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76248 -73.98937 1000 299 125 25 4 200 8 100 1712900 101926.25 1712.9000 16.805288 -693637.5
867 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76127 -73.99181 1000 245 100 100 4 1125 55 82 1712900 88968.75 1712.9000 19.252827 -823212.5
868 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76135 -73.99343 1000 400 100 0 3 99 0 NA 1712900 124100.00 1712.9000 13.802579 -471900.0
869 10036 New York, NY, United States Midtown Manhattan 40.75732 -73.98142 1000 350 50 40 3 30 14 86 1712900 106032.50 1712.9000 16.154481 -652575.0
870 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76160 -73.99368 1000 400 120 0 2 1125 19 96 1712900 127020.00 1712.9000 13.485278 -442700.0
871 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76111 -73.99248 1000 350 100 30 6 1125 97 93 1712900 112602.50 1712.9000 15.211918 -586875.0
872 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76093 -73.99924 1000 499 100 0 30 1125 0 NA 1712900 151201.25 1712.9000 11.328610 -200887.5
873 10036 New York, NY, United States Theater District Manhattan 40.75975 -73.98698 1000 470 250 0 30 1125 0 NA 1712900 165162.50 1712.9000 10.370998 -61275.0
874 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76210 -73.99354 1000 178 85 15 3 1125 84 82 1712900 62232.50 1712.9000 27.524204 -1090575.0
875 10036 New York, NY, United States Midtown Manhattan 40.75594 -73.98259 1000 155 30 40 4 90 35 96 1712900 49731.25 1712.9000 34.443132 -1215587.5
876 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76115 -73.99597 1000 350 100 0 4 10 0 NA 1712900 110412.50 1712.9000 15.513642 -608775.0
877 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76312 -73.99394 1000 200 120 50 2 1125 6 93 1712900 75920.00 1712.9000 22.561907 -953700.0
878 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76070 -73.99033 1000 320 100 10 3 1125 3 100 1712900 102930.00 1712.9000 16.641407 -683600.0
879 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76163 -73.99008 1000 226 100 50 2 1125 73 85 1712900 80117.50 1712.9000 21.379848 -911725.0
880 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75562 -73.99736 1000 525 100 100 5 1125 42 98 1712900 165618.75 1712.9000 10.342428 -56712.5
881 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76097 -73.99973 1000 375 120 30 2 1125 1 100 1712900 122366.25 1712.9000 13.998141 -489237.5
882 10036 New York, NY, United States Theater District Manhattan 40.75982 -73.98662 1000 400 85 0 2 1125 0 NA 1712900 121910.00 1712.9000 14.050529 -493800.0
883 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76211 -73.99791 1000 499 100 0 30 1125 0 NA 1712900 151201.25 1712.9000 11.328610 -200887.5
884 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76470 -73.99391 1000 200 0 0 30 365 2 90 1712900 54750.00 1712.9000 31.285845 -1165400.0
885 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76313 -73.99482 1000 115 0 0 30 365 4 95 1712900 31481.25 1712.9000 54.410165 -1398087.5
886 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76102 -73.98874 1000 399 120 50 5 1125 21 92 1712900 130396.25 1712.9000 13.136114 -408937.5
887 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76309 -73.99154 1000 125 100 0 1 3 10 98 1712900 48818.75 1712.9000 35.086929 -1224712.5
888 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76192 -73.99090 1000 180 80 20 3 5 3 100 1712900 62415.00 1712.9000 27.443724 -1088750.0
889 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76304 -73.99166 1000 155 100 0 1 1125 0 NA 1712900 57031.25 1712.9000 30.034411 -1142587.5
890 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76022 -73.99253 1000 395 95 40 2 1125 11 91 1712900 124921.25 1712.9000 13.711839 -463687.5
891 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76142 -73.99431 1000 390 125 30 3 1124 1 100 1712900 127202.50 1712.9000 13.465930 -440875.0
892 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76011 -73.99087 1000 299 80 0 3 90 23 96 1712900 93531.25 1712.9000 18.313665 -777587.5
893 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76277 -73.99321 1000 196 40 0 3 10 7 80 1712900 59495.00 1712.9000 28.790655 -1117950.0
894 10036 New York, NY, United States Theater District Manhattan 40.76034 -73.98656 1000 358 200 0 30 1125 0 NA 1712900 127202.50 1712.9000 13.465930 -440875.0
895 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76022 -74.00117 1000 194 75 50 3 1125 2 100 1712900 67707.50 1712.9000 25.298527 -1035825.0
896 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76125 -73.99389 1000 350 100 0 3 30 41 94 1712900 110412.50 1712.9000 15.513642 -608775.0
897 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76046 -73.99685 1000 416 200 0 30 1125 0 NA 1712900 143080.00 1712.9000 11.971624 -282100.0
898 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75788 -73.99223 1000 250 0 50 2 1125 17 80 1712900 72087.50 1712.9000 23.761401 -992025.0
900 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76124 -74.00059 1000 199 200 40 15 1125 1 100 1712900 86596.25 1712.9000 19.780302 -846937.5
901 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76242 -73.99250 1000 149 135 0 2 1125 7 83 1712900 60498.75 1712.9000 28.312982 -1107912.5
902 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76442 -73.99458 1000 200 0 0 30 365 1 80 1712900 54750.00 1712.9000 31.285845 -1165400.0
903 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76318 -73.99009 1000 125 100 0 30 1125 7 100 1712900 48818.75 1712.9000 35.086929 -1224712.5
904 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76416 -73.98807 1000 300 90 0 2 30 8 98 1712900 95265.00 1712.9000 17.980370 -760250.0
905 10036 New York, NY, United States Theater District Manhattan 40.75935 -73.98750 1000 590 100 0 1 1125 0 NA 1712900 176112.50 1712.9000 9.726169 48225.0
906 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76244 -73.99295 1000 166 100 0 30 365 7 89 1712900 60042.50 1712.9000 28.528126 -1112475.0
907 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76116 -73.99031 1000 250 95 20 3 1125 0 NA 1712900 83767.50 1712.9000 20.448265 -875225.0
908 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76015 -73.99341 1000 275 95 0 1 30 5 92 1712900 89151.25 1712.9000 19.213415 -821387.5
909 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76025 -73.99811 1000 399 100 0 30 1125 3 100 1712900 123826.25 1712.9000 13.833093 -474637.5
910 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76189 -73.99955 1000 499 100 0 30 1125 0 NA 1712900 151201.25 1712.9000 11.328610 -200887.5
911 10036 New York, NY, United States Midtown Manhattan 40.75697 -73.97909 1000 255 80 0 4 14 5 92 1712900 81486.25 1712.9000 21.020724 -898037.5
912 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76256 -73.99040 1000 390 130 30 3 1125 3 93 1712900 127932.50 1712.9000 13.389092 -433575.0
913 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76221 -73.98891 1000 350 25 0 3 70 28 95 1712900 99462.50 1712.9000 17.221566 -718275.0
914 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75826 -73.98923 1000 400 100 25 5 17 15 89 1712900 125925.00 1712.9000 13.602541 -453650.0
915 10036 New York , NY, United States Hell’s Kitchen Manhattan 40.76289 -73.99487 1000 250 85 0 2 1125 6 100 1712900 80847.50 1712.9000 21.186802 -904425.0
916 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76467 -73.99422 1000 185 100 0 30 365 8 98 1712900 65243.75 1712.9000 26.253856 -1060462.5
917 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76094 -73.99778 1000 499 100 0 30 1125 0 NA 1712900 151201.25 1712.9000 11.328610 -200887.5
918 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76299 -73.98994 1000 170 70 50 1 1125 39 91 1712900 60407.50 1712.9000 28.355750 -1108825.0
919 10036 New York, NY, United States Theater District Manhattan 40.75607 -73.98593 1000 699 300 0 6 365 186 99 1712900 235151.25 1712.9000 7.284248 638612.5
920 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76194 -73.99074 1000 350 145 28 1 1125 2 70 1712900 119026.50 1712.9000 14.390913 -522635.0
921 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76291 -73.99202 1000 99 69 55 1 365 134 94 1712900 41190.25 1712.9000 41.585084 -1300997.5
922 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76199 -73.99884 1000 425 120 30 3 1125 0 NA 1712900 136053.75 1712.9000 12.589877 -352362.5
923 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75973 -73.99574 1000 291 200 0 30 1125 0 NA 1712900 108861.25 1712.9000 15.734708 -624287.5
924 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76191 -73.99766 1000 499 100 0 30 1125 0 NA 1712900 151201.25 1712.9000 11.328610 -200887.5
925 10036 New York, NY, United States Midtown Manhattan 40.75722 -73.97842 1000 559 295 0 30 1125 2 90 1712900 196096.25 1712.9000 8.734996 248062.5
926 10036 New York, NY, United States Theater District Manhattan 40.75962 -73.98512 1000 489 110 10 3 1125 4 100 1712900 150653.75 1712.9000 11.369780 -206362.5
927 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76318 -73.99462 1000 200 0 0 30 365 1 100 1712900 54750.00 1712.9000 31.285845 -1165400.0
928 10036 New York, NY, United States Theater District Manhattan 40.75672 -73.98653 1000 385 140 0 2 1125 1 100 1712900 125833.75 1712.9000 13.612405 -454562.5
930 10036 New York, NY, United States Theater District Manhattan 40.75980 -73.98537 1000 369 100 0 30 1125 0 NA 1712900 115613.75 1712.9000 14.815712 -556762.5
931 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75893 -73.99000 1000 350 100 50 3 1125 0 NA 1712900 114062.50 1712.9000 15.017205 -572275.0
932 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76183 -73.99181 1000 525 150 50 1 1125 21 98 1712900 169268.75 1712.9000 10.119411 -20212.5
933 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76091 -73.99126 1000 299 125 25 4 200 16 94 1712900 101926.25 1712.9000 16.805288 -693637.5
934 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76246 -73.99530 1000 325 100 25 1 30 33 95 1712900 105393.75 1712.9000 16.252387 -658962.5
935 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76247 -73.99225 1000 150 120 15 21 365 2 100 1712900 59677.50 1712.9000 28.702610 -1116125.0
936 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76253 -73.99803 1000 379 100 0 30 1125 0 NA 1712900 118351.25 1712.9000 14.473020 -529387.5
938 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76124 -73.98897 1000 155 60 25 2 1125 0 NA 1712900 53016.25 1712.9000 32.308962 -1182737.5
939 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76183 -73.99160 1000 250 30 20 2 20 3 80 1712900 74277.50 1712.9000 23.060819 -970125.0
940 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76262 -73.98865 1000 177 100 0 1 1125 7 93 1712900 63053.75 1712.9000 27.165712 -1082362.5
941 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76273 -73.99192 1000 249 100 0 1 1125 9 82 1712900 82763.75 1712.9000 20.696259 -885262.5
942 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76199 -73.99253 1000 62 0 0 1 3 59 95 1712900 16972.50 1712.9000 100.922080 -1543175.0
943 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75735 -73.99007 1000 160 80 0 2 29 143 90 1712900 55480.00 1712.9000 30.874189 -1158100.0
944 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75967 -73.99219 1000 499 90 0 3 1125 6 97 1712900 149741.25 1712.9000 11.439066 -215487.5
945 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75953 -73.99019 1000 308 100 50 3 1125 0 NA 1712900 102565.00 1712.9000 16.700629 -687250.0
946 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76104 -73.99255 1000 260 100 0 2 1125 21 93 1712900 85775.00 1712.9000 19.969688 -855150.0
947 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76009 -73.98937 1000 280 80 0 5 12 1 100 1712900 88330.00 1712.9000 19.392052 -829600.0
948 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76274 -73.99118 1000 189 135 0 31 1125 0 NA 1712900 71448.75 1712.9000 23.973827 -998412.5
949 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76007 -73.99031 1000 79 100 0 1 7 0 NA 1712900 36226.25 1712.9000 47.283393 -1350637.5
950 10036 New York, NY, United States Theater District Manhattan 40.76061 -73.98589 1000 353 200 0 30 1125 0 NA 1712900 125833.75 1712.9000 13.612405 -454562.5
951 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76344 -73.99290 1000 142 0 0 30 1125 4 90 1712900 38872.50 1712.9000 44.064570 -1324175.0
952 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76380 -73.99298 1000 220 60 50 5 1125 49 97 1712900 72635.00 1712.9000 23.582295 -986550.0
953 10036 New York, NY, United States Theater District Manhattan 40.75987 -73.98600 1000 375 100 0 5 30 0 NA 1712900 117256.25 1712.9000 14.608177 -540337.5
954 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75971 -73.99256 1000 445 125 30 2 1124 1 100 1712900 142258.75 1712.9000 12.040736 -290312.5
955 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76019 -73.99586 1000 499 100 0 4 1125 8 100 1712900 151201.25 1712.9000 11.328610 -200887.5
956 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.75950 -73.98967 1000 360 150 0 1 1125 13 92 1712900 120450.00 1712.9000 14.220838 -508400.0
957 10036 New York, NY, United States Hell’s Kitchen Manhattan 40.76220 -73.99625 1000 425 100 30 3 1110 5 96 1712900 133133.75 1712.9000 12.866009 -381562.5
958 10128 New York, NY, United States Upper East Side Manhattan 40.78228 -73.94715 1000 130 100 0 1 1125 4 100 1787100 50187.50 1787.1000 35.608468 -1285225.0
959 10128 New York, NY, United States Upper East Side Manhattan 40.78508 -73.95332 1500 250 100 0 4 730 0 NA 1787100 83037.50 1191.4000 21.521602 -956725.0
960 10128 new york, NY, United States Civic Center Manhattan 40.71365 -74.00530 1000 210 60 0 5 7 6 96 1787100 66247.50 1787.1000 26.976112 -1124625.0
961 10128 New York, NY, United States Upper East Side Manhattan 40.77878 -73.94491 1000 170 129 35 10 60 11 90 1787100 67926.50 1787.1000 26.309320 -1107835.0
962 10128 New York, NY, United States Upper East Side Manhattan 40.78276 -73.95299 1000 250 100 0 5 30 22 98 1787100 83037.50 1787.1000 21.521602 -956725.0
963 10128 New York, NY, United States Upper East Side Manhattan 40.78016 -73.95029 1000 280 110 0 3 1125 0 NA 1787100 92710.00 1787.1000 19.276238 -860000.0
964 10128 New York, NY, United States Upper East Side Manhattan 40.78429 -73.94878 1000 200 60 0 5 20 48 90 1787100 63510.00 1787.1000 28.138876 -1152000.0
965 10128 New York, NY, United States Upper East Side Manhattan 40.78149 -73.95168 1000 400 150 0 14 1125 0 NA 1787100 131400.00 1787.1000 13.600457 -473100.0
966 10128 New York, NY, United States Upper East Side Manhattan 40.78317 -73.94559 1000 185 60 0 3 90 1 100 1787100 59403.75 1787.1000 30.083959 -1193062.5
967 10128 New York, NY, United States Upper East Side Manhattan 40.78266 -73.94673 1000 700 150 70 2 180 0 NA 1787100 218635.00 1787.1000 8.173897 399250.0
968 10128 New York, NY, United States Upper East Side Manhattan 40.77833 -73.94775 1000 200 40 10 2 1125 1 100 1787100 61320.00 1787.1000 29.143836 -1173900.0
969 10128 New York, NY, United States Upper East Side Manhattan 40.77744 -73.94501 1000 230 200 0 30 1125 0 NA 1787100 92162.50 1787.1000 19.390750 -865475.0
970 10128 New York, NY, United States Upper East Side Manhattan 40.78474 -73.94974 1000 180 100 0 1 1125 0 NA 1787100 63875.00 1787.1000 27.978082 -1148350.0
971 10128 New York, NY, United States Upper East Side Manhattan 40.78130 -73.94675 1000 162 150 25 30 1125 0 NA 1787100 68072.50 1787.1000 26.252892 -1106375.0
972 10128 New York, NY, United States Upper East Side Manhattan 40.77919 -73.94733 1000 199 130 25 4 1125 10 96 1787100 75281.25 1787.1000 23.738979 -1034287.5
973 10128 New York, NY, United States Upper East Side Manhattan 40.78108 -73.95439 1000 215 100 0 3 21 0 NA 1787100 73456.25 1787.1000 24.328767 -1052537.5
974 10128 New York, NY, United States Upper East Side Manhattan 40.78318 -73.94556 1000 300 150 10 30 1125 10 80 1787100 104755.00 1787.1000 17.059806 -739550.0
975 10128 New York, NY, United States Upper East Side Manhattan 40.77987 -73.94804 1000 180 100 0 1 1125 3 93 1787100 63875.00 1787.1000 27.978082 -1148350.0
976 10128 New York, NY, United States Upper East Side Manhattan 40.78345 -73.94751 1000 200 65 0 3 90 0 NA 1787100 64240.00 1787.1000 27.819116 -1144700.0
977 10128 New York, NY, United States East Harlem Manhattan 40.78672 -73.94869 1000 289 100 25 2 1125 74 90 1787100 95538.75 1787.1000 18.705499 -831712.5
978 10128 New York, NY, United States Upper East Side Manhattan 40.78193 -73.94884 1000 300 130 20 30 1125 3 87 1787100 102565.00 1787.1000 17.424073 -761450.0
979 10128 New York, NY, United States Upper East Side Manhattan 40.77905 -73.94754 1000 200 0 50 15 60 0 NA 1787100 58400.00 1787.1000 30.601027 -1203100.0
980 10128 New York, NY, United States Upper East Side Manhattan 40.78305 -73.94532 1000 99 150 25 30 365 0 NA 1787100 50826.25 1787.1000 35.160965 -1278837.5
981 10128 New York, NY, United States Upper East Side Manhattan 40.78439 -73.95762 1000 400 100 0 5 1125 0 NA 1787100 124100.00 1787.1000 14.400483 -546100.0
982 10128 New York, NY, United States Upper East Side Manhattan 40.77851 -73.94985 1000 218 80 40 2 1125 60 95 1787100 74277.50 1787.1000 24.059776 -1044325.0
984 10128 New York, NY, United States Upper East Side Manhattan 40.78531 -73.95683 1000 150 150 0 30 1125 2 80 1787100 62962.50 1787.1000 28.383562 -1157475.0
985 10128 New York, NY, United States Upper East Side Manhattan 40.77962 -73.95069 1000 300 100 0 1 1125 0 NA 1787100 96725.00 1787.1000 18.476092 -819850.0
986 10128 New York, NY, United States Upper East Side Manhattan 40.78126 -73.94655 1000 133 150 0 30 365 9 80 1787100 58308.75 1787.1000 30.648916 -1204012.5
987 10128 New York, NY, United States Upper East Side Manhattan 40.78007 -73.94677 1000 115 100 0 4 1125 1 100 1787100 46081.25 1787.1000 38.781500 -1326287.5
988 10128 New York, NY, United States Upper East Side Manhattan 40.78324 -73.94734 1000 275 65 0 6 1125 0 NA 1787100 84771.25 1787.1000 21.081440 -939387.5
989 10128 New York, NY, United States Upper East Side Manhattan 40.78281 -73.94516 1000 143 100 25 2 27 88 95 1787100 55571.25 1787.1000 32.158715 -1231387.5
990 10128 New York, NY, United States Upper East Side Manhattan 40.78473 -73.94884 1000 350 150 25 4 60 2 100 1787100 119537.50 1787.1000 14.950120 -591725.0
991 10128 New York, NY, United States Upper East Side Manhattan 40.77985 -73.94624 1000 200 50 0 5 1125 4 100 1787100 62050.00 1787.1000 28.800967 -1166600.0
992 10128 New York, NY, United States Upper East Side Manhattan 40.78222 -73.94791 1000 100 100 0 1 3 1 100 1787100 41975.00 1787.1000 42.575342 -1367350.0
993 10128 New York, NY, United States Upper East Side Manhattan 40.78271 -73.95288 1000 595 225 0 2 30 30 97 1787100 195731.25 1787.1000 9.130377 170212.5
994 10128 New York, NY, United States Upper East Side Manhattan 40.78419 -73.94851 1000 210 100 0 5 1125 0 NA 1787100 72087.50 1787.1000 24.790706 -1066225.0
995 10128 New York, NY, United States Upper East Side Manhattan 40.78340 -73.94556 1000 95 15 0 2 14 0 NA 1787100 28196.25 1787.1000 63.380769 -1505137.5
996 10128 New York, NY, United States Upper East Side Manhattan 40.78555 -73.95311 1000 180 50 30 2 180 18 90 1787100 58765.00 1787.1000 30.410959 -1199450.0
997 10128 New York, NY, United States Upper East Side Manhattan 40.78430 -73.95745 1000 450 140 45 5 30 5 92 1787100 146912.50 1787.1000 12.164384 -317975.0
998 10128 New York, NY, United States Upper East Side Manhattan 40.78134 -73.95212 1000 289 89 0 5 130 15 99 1787100 92107.75 1787.1000 19.402276 -866022.5
999 10128 New York, NY, United States Upper East Side Manhattan 40.78002 -73.95211 1000 250 0 0 1 1125 60 94 1787100 68437.50 1787.1000 26.112877 -1102725.0
1000 10128 New York, NY, United States Upper East Side Manhattan 40.78333 -73.94996 1000 300 100 0 1 1125 0 NA 1787100 96725.00 1787.1000 18.476092 -819850.0
1001 10128 New York, NY, United States Upper East Side Manhattan 40.78402 -73.94974 1000 222 50 35 2 1125 94 91 1787100 70627.50 1787.1000 25.303175 -1080825.0
1002 10128 New York, NY, United States Upper East Side Manhattan 40.78165 -73.94647 1000 110 150 10 30 365 7 94 1787100 52742.50 1787.1000 33.883491 -1259675.0
1003 10128 New York, NY, United States Upper East Side Manhattan 40.78302 -73.94647 1000 110 150 10 30 1125 12 95 1787100 52742.50 1787.1000 33.883491 -1259675.0
1004 10128 New York, NY, United States Upper East Side Manhattan 40.78370 -73.94877 1000 180 100 0 1 1125 1 80 1787100 63875.00 1787.1000 27.978082 -1148350.0
1005 10128 New York, NY, United States Upper East Side Manhattan 40.78277 -73.95164 1000 199 50 50 2 365 2 80 1787100 65426.25 1787.1000 27.314725 -1132837.5
1006 10128 New York, NY, United States Upper East Side Manhattan 40.77655 -73.94787 1000 264 100 75 1 1125 49 89 1787100 92345.00 1787.1000 19.352428 -863650.0
1007 10128 New York, NY, United States Upper East Side Manhattan 40.78306 -73.94581 1000 115 20 25 2 1125 8 75 1787100 36226.25 1787.1000 49.331631 -1424837.5
1008 10128 New York, NY, United States Upper East Side Manhattan 40.78172 -73.94827 1000 225 85 20 3 1125 62 87 1787100 75463.75 1787.1000 23.681569 -1032462.5
1009 10128 New York, NY, United States Upper East Side Manhattan 40.77660 -73.94862 1000 275 200 50 30 365 17 93 1787100 108131.25 1787.1000 16.527137 -705787.5
1010 10128 New York, NY, United States Upper East Side Manhattan 40.78234 -73.94760 1000 219 120 0 2 100 20 96 1787100 77471.25 1787.1000 23.067912 -1012387.5
1011 10128 New York, NY, United States Upper East Side Manhattan 40.78364 -73.94586 1000 175 100 0 3 90 1 100 1787100 62506.25 1787.1000 28.590741 -1162037.5
1012 10128 New York, NY, United States Upper East Side Manhattan 40.78389 -73.95306 1000 200 40 0 4 1125 1 80 1787100 60590.00 1787.1000 29.494966 -1181200.0
1013 10128 New York, NY, United States Upper East Side Manhattan 40.78171 -73.94617 1000 99 120 10 30 365 6 93 1787100 45351.25 1787.1000 39.405750 -1333587.5
1014 10128 New York, NY, United States Upper East Side Manhattan 40.78316 -73.94662 1000 175 120 10 30 1125 4 80 1787100 66156.25 1787.1000 27.013321 -1125537.5
1015 10128 New York, NY, United States Upper East Side Manhattan 40.78217 -73.94844 1000 150 85 0 6 1000 17 95 1787100 53472.50 1787.1000 33.420917 -1252375.0
1016 10128 New York, NY, United States Upper East Side Manhattan 40.78360 -73.95093 1000 303 100 30 7 30 29 97 1787100 99736.25 1787.1000 17.918259 -789737.5
1017 10128 New York, NY, United States East Harlem Manhattan 40.78540 -73.94981 1000 250 100 0 2 1125 3 100 1787100 83037.50 1787.1000 21.521602 -956725.0
1018 10128 New York, NY, United States Upper East Side Manhattan 40.78269 -73.95288 1000 127 100 0 1 30 0 NA 1787100 49366.25 1787.1000 36.200846 -1293437.5
1019 10128 New York, NY, United States Upper East Side Manhattan 40.77752 -73.94647 1000 149 95 0 4 1125 0 NA 1787100 54658.75 1787.1000 32.695588 -1240512.5
1020 10128 New York, NY, United States Upper East Side Manhattan 40.78071 -73.95309 1000 240 65 0 5 1125 4 100 1787100 75190.00 1787.1000 23.767788 -1035200.0
1021 10128 New York, NY, United States East Harlem Manhattan 40.78757 -73.95089 1000 185 60 25 2 356 98 96 1787100 61228.75 1787.1000 29.187269 -1174812.5
1022 10128 New York, NY, United States Upper East Side Manhattan 40.77608 -73.94364 1000 220 175 0 30 1125 0 NA 1787100 85775.00 1787.1000 20.834742 -929350.0
1023 10303 Staten Island, NY, United States Mariners Harbor Staten Island 40.63531 -74.15789 1000 130 75 25 2 28 8 90 327700 48362.50 327.7000 6.775911 155925.0
1024 10303 Staten Island, NY, United States Graniteville Staten Island 40.62439 -74.16634 1000 115 100 0 1 15 36 88 327700 46081.25 327.7000 7.111352 133112.5
1025 10303 Staten Island, NY, United States Graniteville Staten Island 40.62301 -74.16558 1000 71 40 20 4 28 7 97 327700 26736.25 327.7000 12.256768 -60337.5
1026 10303 Staten Island, NY, United States Howland Hook Staten Island 40.63245 -74.17065 1000 100 30 10 3 90 21 92 327700 32485.00 327.7000 10.087733 -2850.0
1027 10304 Staten Island, NY, United States Stapleton Staten Island 40.63220 -74.07913 1000 95 55 20 30 364 25 95 328300 35496.25 328.3000 9.248864 26662.5
1028 10304 Staten Island, NY, United States Clifton Staten Island 40.62578 -74.07356 1000 75 100 0 1 1125 1 80 328300 35131.25 328.3000 9.344956 23012.5
1029 10304 Staten Island, NY, United States Grymes Hill Staten Island 40.61758 -74.09112 1000 110 60 10 2 90 69 100 328300 39602.50 328.3000 8.289881 67725.0
1030 10305 Staten Island, NY, United States Arrochar Staten Island 40.59372 -74.06766 1000 60 55 30 1 30 25 98 425100 26645.00 425.1000 15.954213 -158650.0
1031 10305 Staten Island, NY, United States Arrochar Staten Island 40.58957 -74.07666 1000 100 50 15 2 1125 18 98 425100 35770.00 425.1000 11.884261 -67400.0
1032 10305 Staten Island, NY, United States Arrochar Staten Island 40.59347 -74.06914 1000 122 60 10 1 90 52 93 425100 42887.50 425.1000 9.911979 3775.0
1033 10305 Staten Island, NY, United States Concord Staten Island 40.60375 -74.08065 1000 129 50 20 1 1125 40 85 425100 44073.75 425.1000 9.645197 15637.5
1034 10305 Staten Island, NY, United States Rosebank Staten Island 40.60816 -74.07634 1000 90 70 0 3 1125 19 100 425100 34857.50 425.1000 12.195367 -76525.0
1035 10305 Staten Island, NY, United States Shore Acres Staten Island 40.60525 -74.06745 1000 300 0 50 1 7 0 NA 425100 85775.00 425.1000 4.955990 432650.0
1036 10305 Staten Island, NY, United States Rosebank Staten Island 40.61588 -74.06711 1000 100 35 0 1 28 47 92 425100 32485.00 425.1000 13.086040 -100250.0
1037 10305 Staten Island, NY, United States South Beach Staten Island 40.58639 -74.08943 1000 100 100 0 2 15 6 100 425100 41975.00 425.1000 10.127457 -5350.0
1038 10305 Staten Island, NY, United States Rosebank Staten Island 40.61438 -74.06640 1000 138 100 0 1 29 51 89 425100 52377.50 425.1000 8.116080 98675.0
1039 10305 Staten Island, NY, United States Dongan Hills Staten Island 40.57825 -74.08879 1000 95 89 10 4 1125 45 94 425100 39730.25 425.1000 10.699656 -27797.5
1040 10305 Staten Island, NY, United States Concord Staten Island 40.60367 -74.06950 1000 200 75 0 4 10 4 100 425100 65700.00 425.1000 6.470320 231900.0
1041 10305 Staten Island, NY, United States Concord Staten Island 40.60556 -74.08274 1000 150 65 0 7 1125 1 100 425100 50552.50 425.1000 8.409080 80425.0
1042 10306 Staten Island, NY, United States Oakwood Staten Island 40.56054 -74.12004 1000 130 120 10 1 1125 1 100 352900 53837.50 352.9000 6.554911 185475.0
1043 10306 Staten Island, NY, United States Midland Beach Staten Island 40.57509 -74.09606 1000 105 80 15 4 1125 20 78 352900 41518.75 352.9000 8.499774 62287.5
1044 10308 Staten Island, NY, United States Great Kills Staten Island 40.54550 -74.14829 1000 99 10 25 1 11 82 100 409500 30386.25 409.5000 13.476490 -105637.5
1045 10308 Staten Island, NY, United States Great Kills Staten Island 40.54901 -74.14200 1000 120 50 60 2 14 4 100 409500 44530.00 409.5000 9.196048 35800.0
1046 10309 Staten Island, NY, United States Prince’s Bay Staten Island 40.52293 -74.21238 1000 85 60 25 2 14 8 98 390500 33853.75 390.5000 11.534911 -51962.5
1047 10314 Staten Island, NY, United States New Springville Staten Island 40.59274 -74.16178 1000 68 25 20 2 90 11 95 357300 23725.00 357.3000 15.060063 -120050.0
1048 10314 Staten Island , NY, United States Emerson Hill Staten Island 40.61035 -74.11711 1000 78 65 25 2 1125 11 91 357300 32667.50 357.3000 10.937476 -30625.0
1049 11003 Elmont, NY, United States Cambria Heights Queens 40.69955 -73.72247 1000 180 25 0 1 28 0 NA 347500 52925.00 347.5000 6.565895 181750.0
1050 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69100 -73.99467 1000 220 90 0 5 30 3 93 1420700 73365.00 1420.7000 19.364820 -687050.0
1051 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69769 -73.98386 1000 250 75 0 2 1125 8 94 1420700 79387.50 1420.7000 17.895764 -626825.0
1052 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69261 -73.99252 1000 200 100 0 2 1125 2 100 1420700 69350.00 1420.7000 20.485941 -727200.0
1053 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69304 -73.99328 1000 250 250 0 7 20 5 100 1420700 104937.50 1420.7000 13.538535 -371325.0
1054 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68658 -73.98910 1000 180 100 0 2 1125 17 100 1420700 63875.00 1420.7000 22.241879 -781950.0
1055 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68836 -73.99763 1000 285 150 0 6 1125 6 100 1420700 99918.75 1420.7000 14.218553 -421512.5
1056 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69156 -73.98686 1000 179 175 25 2 27 5 100 1420700 76376.25 1420.7000 18.601332 -656937.5
1057 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68620 -73.98906 1000 220 45 60 2 1125 17 96 1420700 71175.00 1420.7000 19.960660 -708950.0
1058 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69594 -73.98375 1000 175 40 25 13 200 64 97 1420700 55571.25 1420.7000 25.565378 -864987.5
1059 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68837 -73.98717 1000 185 150 50 3 1125 18 97 1420700 76193.75 1420.7000 18.645886 -658762.5
1060 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70430 -73.98667 1000 189 120 50 2 1125 177 94 1420700 72908.75 1420.7000 19.486001 -691612.5
1061 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70254 -73.99189 1000 200 250 25 30 1125 0 NA 1420700 93075.00 1420.7000 15.264034 -489950.0
1062 11201 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68518 -73.99247 1000 170 50 25 1 1125 90 97 1420700 55662.50 1420.7000 25.523467 -864075.0
1063 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69387 -73.99412 1000 299 175 0 4 40 6 100 1420700 107401.25 1420.7000 13.227965 -346687.5
1064 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69061 -73.99264 1000 113 50 0 3 15 4 95 1420700 38233.75 1420.7000 37.158270 -1038362.5
1065 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68795 -73.99158 1000 124 100 0 30 44 1 100 1420700 48545.00 1420.7000 29.265630 -935250.0
1066 11201 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68574 -73.99421 1000 250 75 0 2 1125 0 NA 1420700 79387.50 1420.7000 17.895764 -626825.0
1067 11201 Brooklyn, NY, United States Vinegar Hill Brooklyn 40.70328 -73.98314 1000 170 80 15 4 1125 2 100 1420700 59312.50 1420.7000 23.952792 -827575.0
1068 11201 Brooklyn , NY, United States Fort Greene Brooklyn 40.69321 -73.98143 1000 375 100 50 2 30 14 96 1420700 120906.25 1420.7000 11.750426 -211637.5
1069 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70267 -73.98828 1000 125 150 75 12 90 24 98 1420700 61593.75 1420.7000 23.065652 -804762.5
1070 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.70206 -73.99343 1000 245 110 25 3 15 1 60 1420700 84953.75 1420.7000 16.723217 -571162.5
1071 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70284 -73.99083 1000 375 150 50 3 1125 2 100 1420700 128206.25 1420.7000 11.081363 -138637.5
1072 11201 Brooklyn , NY, United States Brooklyn Heights Brooklyn 40.69472 -73.99856 1000 195 100 0 5 1125 94 97 1420700 67981.25 1420.7000 20.898409 -740887.5
1073 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70321 -73.98488 1000 150 100 50 3 12 3 100 1420700 59312.50 1420.7000 23.952792 -827575.0
1074 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68611 -73.99031 1000 250 150 0 6 9 6 96 1420700 90337.50 1420.7000 15.726581 -517325.0
1075 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69731 -73.98228 1000 120 100 10 30 120 9 87 1420700 48180.00 1420.7000 29.487339 -938900.0
1076 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69810 -73.99580 1000 550 225 0 3 47 4 100 1420700 183412.50 1420.7000 7.745928 413425.0
1077 11201 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68450 -73.99024 1000 175 90 0 4 1125 4 100 1420700 61046.25 1420.7000 23.272519 -810237.5
1078 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68796 -73.98783 1000 174 60 0 3 1125 5 100 1420700 56392.50 1420.7000 25.193067 -856775.0
1079 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69727 -73.98552 1000 97 100 10 31 93 8 98 1420700 41883.75 1420.7000 33.920076 -1001862.5
1080 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68766 -73.99125 1000 170 100 0 4 20 8 100 1420700 61137.50 1420.7000 23.237784 -809325.0
1081 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68982 -73.99675 1000 250 100 35 1 180 185 99 1420700 85592.50 1420.7000 16.598417 -564775.0
1082 11201 Brooklyn, NY, United States Vinegar Hill Brooklyn 40.70369 -73.98306 1000 186 150 0 30 1125 1 100 1420700 72817.50 1420.7000 19.510420 -692525.0
1083 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68846 -73.99557 1000 250 150 30 2 1125 19 99 1420700 92527.50 1420.7000 15.354354 -495425.0
1084 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68612 -73.98988 1000 174 25 10 2 1125 9 98 1420700 52012.50 1420.7000 27.314588 -900575.0
1085 11201 Brooklyn, NY, United States Vinegar Hill Brooklyn 40.70344 -73.98390 1000 350 100 0 3 15 0 NA 1420700 110412.50 1420.7000 12.867202 -316575.0
1086 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70257 -73.98470 1000 350 150 0 5 1125 40 92 1420700 117712.50 1420.7000 12.069237 -243575.0
1087 11201 Brooklyn, NY, United States Columbia St Brooklyn 40.68863 -74.00181 1000 200 75 20 3 1125 15 100 1420700 67160.00 1420.7000 21.153961 -749100.0
1088 11201 Brooklyn, NY, United States Fort Greene Brooklyn 40.69173 -73.97756 1000 120 120 40 4 12 1 100 1420700 53290.00 1420.7000 26.659786 -887800.0
1089 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68623 -73.98956 1000 300 180 0 29 1125 7 100 1420700 108405.00 1420.7000 13.105484 -336650.0
1090 11201 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68577 -73.99280 1000 450 100 0 2 1125 0 NA 1420700 137787.50 1420.7000 10.310805 -42825.0
1091 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69934 -73.99635 1000 600 175 0 3 32 4 100 1420700 189800.00 1420.7000 7.485248 477300.0
1092 11201 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68572 -73.99286 1000 199 50 20 1 1125 6 96 1420700 63236.25 1420.7000 22.466544 -788337.5
1093 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69584 -73.98466 1000 285 40 0 4 15 0 NA 1420700 83858.75 1420.7000 16.941583 -582112.5
1094 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69827 -73.99649 1000 550 100 0 3 1125 1 NA 1420700 165162.50 1420.7000 8.601831 230925.0
1095 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69852 -73.99606 1000 399 300 0 14 17 0 NA 1420700 153026.25 1420.7000 9.284028 109562.5
1096 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68631 -73.99624 1000 700 300 0 4 30 3 NA 1420700 235425.00 1420.7000 6.034618 933550.0
1097 11201 Brooklyn, NY, United States Vinegar Hill Brooklyn 40.70139 -73.98351 1000 250 155 0 4 1125 5 100 1420700 91067.50 1420.7000 15.600516 -510025.0
1098 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68599 -73.98826 1000 300 180 0 29 1125 23 100 1420700 108405.00 1420.7000 13.105484 -336650.0
1099 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70212 -73.98510 1000 245 50 0 3 1124 8 95 1420700 74368.75 1420.7000 19.103454 -677012.5
1100 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69899 -73.98653 1000 180 100 0 5 18 0 NA 1420700 63875.00 1420.7000 22.241879 -781950.0
1101 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70424 -73.98597 1000 189 120 50 2 1125 236 94 1420700 72908.75 1420.7000 19.486001 -691612.5
1102 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69192 -73.98391 1000 250 150 30 4 1125 15 97 1420700 92527.50 1420.7000 15.354354 -495425.0
1103 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68882 -73.98911 1000 170 80 0 5 1125 2 100 1420700 58217.50 1420.7000 24.403315 -838525.0
1104 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69454 -73.99547 1000 275 150 0 5 10 0 NA 1420700 97181.25 1420.7000 14.619075 -448887.5
1105 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70416 -73.98999 1000 250 100 0 30 1125 0 NA 1420700 83037.50 1420.7000 17.109137 -590325.0
1106 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68554 -73.98924 900 225 160 25 4 365 95 98 1420700 86778.75 1578.5556 16.371520 -552912.5
1107 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69009 -73.99355 1000 195 80 20 3 6 1 100 1420700 66521.25 1420.7000 21.357085 -755487.5
1108 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70238 -73.99181 1000 250 100 0 30 1125 0 NA 1420700 83037.50 1420.7000 17.109137 -590325.0
1109 11201 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68353 -73.99140 1000 189 25 0 2 365 13 100 1420700 55388.75 1420.7000 25.649613 -866812.5
1110 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68896 -73.99734 1000 289 150 20 1 30 5 100 1420700 102473.75 1420.7000 13.864038 -395962.5
1111 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68554 -73.99499 1000 175 75 0 7 14 32 96 1420700 58856.25 1420.7000 24.138473 -832137.5
1112 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69276 -73.99630 1000 240 85 70 2 18 45 99 1420700 83220.00 1420.7000 17.071617 -588500.0
1113 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69119 -73.99438 1000 300 75 50 2 7 8 97 1420700 96725.00 1420.7000 14.688033 -453450.0
1114 11201 Brooklyn, NY, United States Columbia St Brooklyn 40.68930 -74.00023 1000 250 80 0 7 14 0 NA 1420700 80117.50 1420.7000 17.732705 -619525.0
1115 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69441 -73.99771 1000 200 100 0 3 15 80 95 1420700 69350.00 1420.7000 20.485941 -727200.0
1116 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68873 -73.98929 1000 220 85 25 30 140 2 100 1420700 74460.00 1420.7000 19.080043 -676100.0
1117 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70268 -73.98603 1000 350 60 0 2 4 0 NA 1420700 104572.50 1420.7000 13.585790 -374975.0
1118 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68783 -73.98695 1000 295 120 0 2 31 31 99 1420700 98276.25 1420.7000 14.456189 -437937.5
1119 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68719 -73.99384 1000 210 250 0 30 1125 0 NA 1420700 93987.50 1420.7000 15.115840 -480825.0
1120 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.68967 -73.98664 1000 150 30 0 3 1125 0 NA 1420700 45442.50 1420.7000 31.263685 -966275.0
1121 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69754 -73.99298 1000 270 140 0 4 1125 48 95 1420700 94352.50 1420.7000 15.057365 -477175.0
1122 11201 Brooklyn, NY, United States Vinegar Hill Brooklyn 40.70112 -73.98402 1000 225 25 25 2 1125 1 100 1420700 67068.75 1420.7000 21.182742 -750012.5
1123 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68732 -73.99096 1000 289 89 25 30 175 0 NA 1420700 93932.75 1420.7000 15.124650 -481372.5
1124 11201 Brooklyn, NY, United States Brooklyn Heights Brooklyn 40.69162 -73.99252 1000 250 100 0 30 360 6 97 1420700 83037.50 1420.7000 17.109137 -590325.0
1125 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68570 -73.99183 600 140 60 0 2 5 4 90 1420700 47085.00 2367.8333 30.173091 -949850.0
1126 11201 Brooklyn , NY, United States Boerum Hill Brooklyn 40.68727 -73.98574 1000 189 25 15 5 30 58 92 1420700 56483.75 1420.7000 25.152367 -855862.5
1127 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70287 -73.98518 1000 200 60 0 7 9 0 NA 1420700 63510.00 1420.7000 22.369706 -785600.0
1128 11201 Brooklyn, NY, United States Downtown Brooklyn Brooklyn 40.69201 -73.98713 1000 275 125 0 3 128 20 96 1420700 93531.25 1420.7000 15.189576 -485387.5
1129 11201 Brooklyn, NY, United States DUMBO Brooklyn 40.70412 -73.99194 1000 200 250 25 30 1125 0 NA 1420700 93075.00 1420.7000 15.264034 -489950.0
1130 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68614 -73.99082 1000 150 95 0 4 7 0 NA 1420700 54932.50 1420.7000 25.862650 -871375.0
1131 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68786 -73.98811 1000 160 100 35 5 24 10 100 1420700 60955.00 1420.7000 23.307358 -811150.0
1132 11201 Brooklyn, NY, United States Vinegar Hill Brooklyn 40.70211 -73.98418 1000 245 45 0 2 1125 3 80 1420700 73638.75 1420.7000 19.292832 -684312.5
1133 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68942 -73.98739 1000 150 70 0 30 1125 1 100 1420700 51282.50 1420.7000 27.703408 -907875.0
1134 11201 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68782 -73.99111 1000 300 200 30 7 31 1 80 1420700 113515.00 1420.7000 12.515527 -285550.0
1135 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65722 -73.97930 1000 61 100 20 1 1125 91 96 1070800 32758.75 1070.8000 32.687450 -743212.5
1136 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66675 -73.97571 1000 200 50 0 8 1125 2 100 1070800 62050.00 1070.8000 17.257051 -450300.0
1137 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66791 -73.99354 1000 125 100 0 5 1125 7 100 1070800 48818.75 1070.8000 21.934195 -582612.5
1138 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66615 -73.98747 1000 131 100 75 2 1125 67 96 1070800 55936.25 1070.8000 19.143221 -511437.5
1139 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66175 -73.98731 1000 90 100 25 3 1125 76 99 1070800 41062.50 1070.8000 26.077321 -660175.0
1140 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66933 -73.99158 1000 125 89 15 3 1125 70 97 1070800 48307.75 1070.8000 22.166216 -587722.5
1141 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66944 -73.98083 1000 130 50 50 3 21 179 92 1070800 46537.50 1070.8000 23.009401 -605425.0
1142 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66533 -73.98212 1000 134 75 25 5 30 5 88 1070800 49457.50 1070.8000 21.650912 -576225.0
1143 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66414 -73.98457 1000 150 50 25 3 90 136 97 1070800 50187.50 1070.8000 21.335990 -568925.0
1144 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66621 -73.99256 1000 169 35 0 1 31 2 90 1070800 51373.75 1070.8000 20.843329 -557062.5
1145 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67148 -73.97479 1000 198 75 0 7 1125 43 99 1070800 65152.50 1070.8000 16.435286 -419275.0
1146 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66470 -73.97791 1000 55 100 20 3 7 0 NA 1070800 31116.25 1070.8000 34.412887 -759637.5
1147 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66043 -73.98609 1000 139 55 20 2 1125 19 100 1070800 47541.25 1070.8000 22.523598 -595387.5
1148 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67376 -73.98397 1000 200 100 0 365 365 4 100 1070800 69350.00 1070.8000 15.440519 -377300.0
1149 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66707 -73.98994 1000 145 50 25 1 1125 4 100 1070800 48818.75 1070.8000 21.934195 -582612.5
1150 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66402 -73.98282 1000 285 50 40 5 21 29 99 1070800 88238.75 1070.8000 12.135258 -188412.5
1151 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67329 -73.98311 1000 125 100 0 3 30 2 100 1070800 48818.75 1070.8000 21.934195 -582612.5
1152 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66626 -73.97933 1000 160 85 15 1 21 145 92 1070800 57305.00 1070.8000 18.685979 -497750.0
1153 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66294 -73.99146 1000 250 100 0 3 1125 0 NA 1070800 83037.50 1070.8000 12.895379 -240425.0
1154 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66767 -73.98280 1000 160 80 15 14 1125 1 100 1070800 56575.00 1070.8000 18.927088 -505050.0
1155 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65828 -73.98451 1000 130 50 15 2 20 5 95 1070800 43982.50 1070.8000 24.346047 -630975.0
1156 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66480 -73.98044 1000 224 100 0 4 30 1 100 1070800 75920.00 1070.8000 14.104320 -311600.0
1157 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67725 -73.98210 1000 178 50 0 30 90 8 91 1070800 56027.50 1070.8000 19.112043 -510525.0
1158 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67155 -73.98373 1000 195 75 0 10 60 4 100 1070800 64331.25 1070.8000 16.645099 -427487.5
1159 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67541 -73.97840 1000 225 100 0 7 30 8 98 1070800 76193.75 1070.8000 14.053646 -308862.5
1160 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66226 -73.98956 1000 125 50 10 2 1125 11 98 1070800 42248.75 1070.8000 25.345129 -648312.5
1161 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66550 -73.99501 1000 225 150 25 3 1125 52 92 1070800 85318.75 1070.8000 12.550582 -217612.5
1162 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67076 -73.98903 1000 350 50 50 2 1125 9 100 1070800 106762.50 1070.8000 10.029739 -3175.0
1163 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66720 -73.98986 1000 50 200 45 90 150 0 NA 1070800 46172.50 1070.8000 23.191294 -609075.0
1164 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66812 -73.99022 3 160 150 0 30 30 1 NA 1070800 65700.00 356933.3333 16.298326 -413800.0
1165 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66106 -73.98316 1000 250 150 50 3 21 17 99 1070800 93987.50 1070.8000 11.393004 -130925.0
1166 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66005 -73.99204 1000 150 80 25 4 1124 123 97 1070800 54567.50 1070.8000 19.623402 -525125.0
1167 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67059 -73.98621 1000 150 25 30 2 5 2 100 1070800 46902.50 1070.8000 22.830340 -601775.0
1168 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66752 -73.98490 1000 90 100 0 6 17 2 100 1070800 39237.50 1070.8000 27.290220 -678425.0
1169 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66701 -73.98703 1000 78 70 20 3 1124 24 94 1070800 33032.50 1070.8000 32.416559 -740475.0
1170 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66006 -73.99161 1000 100 100 0 4 1125 1 100 1070800 41975.00 1070.8000 25.510423 -651050.0
1171 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66489 -73.99128 1000 130 50 0 6 1125 4 85 1070800 42887.50 1070.8000 24.967648 -641925.0
1172 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66723 -73.97607 1000 105 50 20 10 10 4 95 1070800 37503.75 1070.8000 28.551811 -695762.5
1173 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67757 -73.98195 1000 200 120 20 4 21 12 98 1070800 73730.00 1070.8000 14.523260 -333500.0
1174 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66731 -73.98547 1000 275 100 0 5 1125 0 NA 1070800 89881.25 1070.8000 11.913497 -171987.5
1175 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66945 -73.98157 1000 140 100 10 2 1125 24 94 1070800 53655.00 1070.8000 19.957134 -534250.0
1176 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66923 -73.98714 1000 218 67 0 2 14 137 96 1070800 69459.50 1070.8000 15.416178 -376205.0
1177 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66399 -73.98301 1000 210 100 50 3 60 5 90 1070800 75737.50 1070.8000 14.138307 -313425.0
1178 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67003 -73.97400 1000 240 85 25 2 1125 144 96 1070800 79935.00 1070.8000 13.395884 -271450.0
1179 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66371 -73.98760 1000 110 20 50 1 31 48 91 1070800 36682.50 1070.8000 29.191031 -703975.0
1180 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67231 -73.98069 1000 195 100 0 7 365 14 100 1070800 67981.25 1070.8000 15.751402 -390987.5
1181 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66754 -73.98268 1000 200 130 0 31 365 2 100 1070800 73730.00 1070.8000 14.523260 -333500.0
1182 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66657 -73.98725 1000 190 125 0 7 1125 2 100 1070800 70262.50 1070.8000 15.239993 -368175.0
1183 11215 Brooklyn , NY, United States Gowanus Brooklyn 40.66763 -73.99190 1000 115 50 15 1 1125 2 90 1070800 39876.25 1070.8000 26.853077 -672037.5
1184 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66623 -73.98217 1000 115 75 0 3 1125 185 90 1070800 42431.25 1070.8000 25.236117 -646487.5
1185 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66743 -73.98963 1000 300 90 20 2 1125 16 99 1070800 96725.00 1070.8000 11.070561 -103550.0
1186 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66459 -73.99050 1000 130 100 0 4 45 1 100 1070800 50187.50 1070.8000 21.335990 -568925.0
1187 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66508 -73.98974 1000 200 95 55 2 14 14 99 1070800 72635.00 1070.8000 14.742204 -344450.0
1188 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65636 -73.97945 1000 150 100 0 4 1125 1 100 1070800 55662.50 1070.8000 19.237368 -514175.0
1189 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67078 -73.98815 1000 105 0 7 115 300 15 100 1070800 29254.75 1070.8000 36.602603 -778252.5
1190 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67202 -73.97131 1000 700 200 0 7 30 0 NA 1070800 220825.00 1070.8000 4.849089 1137450.0
1191 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66616 -73.99009 1000 150 50 0 2 1125 0 NA 1070800 48362.50 1070.8000 22.141122 -587175.0
1192 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66977 -73.99021 1000 130 50 15 1 1125 10 98 1070800 43982.50 1070.8000 24.346047 -630975.0
1193 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67736 -73.98084 1000 195 80 0 5 50 3 80 1070800 65061.25 1070.8000 16.458337 -420187.5
1194 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67757 -73.98845 1000 139 68 35 2 1125 19 97 1070800 50534.25 1070.8000 21.189589 -565457.5
1195 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67024 -73.99351 1000 299 100 0 3 60 13 95 1070800 96451.25 1070.8000 11.101982 -106287.5
1196 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66432 -73.98847 1000 100 125 0 7 1125 1 100 1070800 45625.00 1070.8000 23.469589 -614550.0
1197 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67170 -73.99247 1000 295 120 50 4 1125 2 90 1070800 101926.25 1070.8000 10.505635 -51537.5
1198 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65818 -73.98031 1000 165 120 40 3 14 55 99 1070800 65608.75 1070.8000 16.320994 -414712.5
1199 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67343 -73.98338 1000 225 100 0 3 14 4 100 1070800 76193.75 1070.8000 14.053646 -308862.5
1200 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66862 -73.99260 1150 260 200 50 30 60 3 100 1070800 104025.00 931.1304 10.293679 -30550.0
1201 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66127 -73.99154 1000 200 50 100 7 12 0 NA 1070800 69350.00 1070.8000 15.440519 -377300.0
1202 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66691 -73.98507 1000 200 75 0 1 1125 4 100 1070800 65700.00 1070.8000 16.298326 -413800.0
1203 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66880 -73.98527 1000 105 100 0 6 11 0 NA 1070800 43343.75 1070.8000 24.704831 -637362.5
1204 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66073 -73.98983 1000 265 100 25 3 90 23 93 1070800 88968.75 1070.8000 12.035687 -181112.5
1205 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66565 -73.98782 1000 120 60 0 3 60 8 93 1070800 41610.00 1070.8000 25.734199 -654700.0
1206 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66448 -73.99407 1000 130 40 0 2 1125 3 93 1070800 41427.50 1070.8000 25.847565 -656525.0
1207 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66317 -73.98465 1000 175 100 20 1 1125 2 100 1070800 63966.25 1070.8000 16.740078 -431137.5
1208 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66595 -73.97973 1000 195 69 20 4 60 22 100 1070800 64915.25 1070.8000 16.495354 -421647.5
1209 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66347 -73.98438 1000 180 20 20 1 1125 7 94 1070800 53655.00 1070.8000 19.957134 -534250.0
1210 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66958 -73.98623 1000 700 250 0 1 10 2 20 1070800 228125.00 1070.8000 4.693918 1210450.0
1211 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66884 -73.97575 1000 180 100 0 3 1125 192 97 1070800 63875.00 1070.8000 16.763992 -432050.0
1212 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65627 -73.97955 1000 250 100 0 7 10 0 NA 1070800 83037.50 1070.8000 12.895379 -240425.0
1213 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67559 -73.97633 1000 300 75 50 3 1125 14 91 1070800 96725.00 1070.8000 11.070561 -103550.0
1214 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66729 -73.98359 1000 196 75 25 2 1125 93 98 1070800 66430.00 1070.8000 16.119223 -406500.0
1215 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67790 -73.98421 1000 162 50 15 1 1125 9 96 1070800 52742.50 1070.8000 20.302413 -543375.0
1216 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66759 -73.99009 1000 120 50 15 3 40 152 96 1070800 41245.00 1070.8000 25.961935 -658350.0
1217 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67376 -73.99648 1000 198 150 20 2 1125 103 97 1070800 77562.50 1070.8000 13.805641 -295175.0
1218 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65954 -73.97805 1000 199 80 25 265 1124 20 89 1070800 67981.25 1070.8000 15.751402 -390987.5
1219 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66907 -73.99221 1000 195 160 10 2 1125 6 93 1070800 77471.25 1070.8000 13.821902 -296087.5
1220 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66356 -73.99368 1000 150 200 50 2 10 0 NA 1070800 73912.50 1070.8000 14.487401 -331675.0
1221 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66763 -73.98156 1000 163 120 0 4 1125 58 93 1070800 62141.25 1070.8000 17.231710 -449387.5
1222 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66293 -73.98380 1000 135 40 20 1 1125 3 80 1070800 44256.25 1070.8000 24.195453 -628237.5
1223 11215 New York, NY, United States South Slope Brooklyn 40.66064 -73.98564 1000 129 60 20 1 29 67 97 1070800 45533.75 1070.8000 23.516622 -615462.5
1224 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66414 -73.98507 1000 179 150 0 2 14 16 100 1070800 70901.25 1070.8000 15.102696 -361787.5
1225 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67949 -73.98666 1000 225 97 25 2 45 113 98 1070800 77580.75 1070.8000 13.802393 -294992.5
1226 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67010 -73.98917 1000 173 97 15 2 10 100 100 1070800 62615.75 1070.8000 17.101129 -444642.5
1227 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67192 -73.97444 1000 230 100 50 3 1125 12 93 1070800 81212.50 1070.8000 13.185162 -258675.0
1228 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.66063 -73.98348 1000 239 75 0 3 7 0 NA 1070800 76376.25 1070.8000 14.020065 -307037.5
1229 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66847 -73.98893 1000 120 50 15 4 1125 139 97 1070800 41245.00 1070.8000 25.961935 -658350.0
1230 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66076 -73.98475 1000 125 60 0 2 10 2 100 1070800 42978.75 1070.8000 24.914638 -641012.5
1231 11215 Brooklyn , NY, United States Gowanus Brooklyn 40.66757 -73.99487 1000 180 80 12 2 1125 5 100 1070800 61831.00 1070.8000 17.318174 -452490.0
1232 11215 Park Slope, Brooklyn, NY, United States Park Slope Brooklyn 40.66977 -73.98305 1000 155 100 0 29 1125 5 96 1070800 57031.25 1070.8000 18.775671 -500487.5
1233 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66872 -73.98648 1000 275 50 10 2 1125 2 100 1070800 83311.25 1070.8000 12.853006 -237687.5
1234 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65639 -73.98242 1000 250 50 0 1 1125 2 100 1070800 75737.50 1070.8000 14.138307 -313425.0
1235 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66451 -73.99342 1000 175 65 0 2 14 6 93 1070800 57396.25 1070.8000 18.656271 -496837.5
1236 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66002 -73.99073 1000 80 40 20 4 1125 152 96 1070800 29200.00 1070.8000 36.671233 -778800.0
1237 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66892 -73.99136 1000 165 80 0 3 29 178 99 1070800 56848.75 1070.8000 18.835946 -502312.5
1238 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66499 -73.97925 1000 400 120 0 2 30 16 95 1070800 127020.00 1070.8000 8.430169 199400.0
1239 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67644 -73.98082 1500 165 60 0 2 730 23 99 1070800 53928.75 713.8667 19.855828 -531512.5
1240 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66055 -73.98597 1000 159 80 39 1 39 11 100 1070800 58053.25 1070.8000 18.445134 -490267.5
1241 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65850 -73.98397 350 135 100 25 2 30 21 97 1070800 53381.25 3059.4286 20.059478 -536987.5
1242 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66493 -73.98136 1000 125 80 0 1 10 27 99 1070800 45898.75 1070.8000 23.329611 -611812.5
1243 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66154 -73.99158 1000 109 100 0 9 26 0 NA 1070800 44438.75 1070.8000 24.096087 -626412.5
1244 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66780 -73.98106 1000 150 50 0 2 1125 0 NA 1070800 48362.50 1070.8000 22.141122 -587175.0
1245 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66134 -73.98844 1000 102 75 25 2 28 24 92 1070800 40697.50 1070.8000 26.311198 -663825.0
1246 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66013 -73.98649 1000 100 100 0 2 30 9 100 1070800 41975.00 1070.8000 25.510423 -651050.0
1247 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66740 -73.98273 1000 200 150 0 30 1125 4 100 1070800 76650.00 1070.8000 13.969993 -304300.0
1248 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66821 -73.98253 1000 180 120 120 31 140 8 100 1070800 75555.00 1070.8000 14.172457 -315250.0
1249 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66832 -73.97662 1000 180 95 55 2 21 67 97 1070800 67160.00 1070.8000 15.944014 -399200.0
1250 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66326 -73.98805 1000 89 59 24 1 5 49 89 1070800 34729.75 1070.8000 30.832355 -723502.5
1251 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66790 -73.98720 1000 162 80 75 2 21 123 94 1070800 61502.50 1070.8000 17.410674 -455775.0
1252 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.66040 -73.98316 1000 150 100 0 10 22 3 100 1070800 55662.50 1070.8000 19.237368 -514175.0
1253 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66643 -73.97598 1000 165 55 50 3 1125 33 99 1070800 56848.75 1070.8000 18.835946 -502312.5
1254 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.65886 -73.99054 1000 60 50 40 2 30 0 NA 1070800 26645.00 1070.8000 40.187652 -804350.0
1255 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66438 -73.97931 1000 195 100 0 4 13 0 NA 1070800 67981.25 1070.8000 15.751402 -390987.5
1256 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66309 -73.98497 1000 180 100 10 30 1124 84 98 1070800 64605.00 1070.8000 16.574569 -424750.0
1257 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66177 -73.98198 1000 200 40 0 3 1125 0 NA 1070800 60590.00 1070.8000 17.672883 -464900.0
1258 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66564 -73.97666 1000 135 200 0 30 1125 0 NA 1070800 66156.25 1070.8000 16.185924 -409237.5
1259 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66775 -73.97738 1000 195 80 0 4 1125 5 100 1070800 65061.25 1070.8000 16.458337 -420187.5
1260 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66148 -73.98942 1000 140 50 0 2 29 83 95 1070800 45625.00 1070.8000 23.469589 -614550.0
1261 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66094 -73.98652 1000 189 50 25 1 19 5 100 1070800 60863.75 1070.8000 17.593395 -462162.5
1262 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66744 -73.99254 1000 99 50 21 2 1125 1 100 1070800 35934.25 1070.8000 29.798869 -711457.5
1263 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67626 -73.98211 1000 175 70 0 7 1125 43 94 1070800 58126.25 1070.8000 18.421969 -489537.5
1264 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67443 -73.98367 1000 250 150 0 5 12 4 95 1070800 90337.50 1070.8000 11.853328 -167425.0
1265 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66579 -73.98991 1100 199 90 25 2 1125 31 89 1070800 69441.25 973.4545 15.420229 -376387.5
1266 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66380 -73.97935 1000 180 30 0 5 1125 2 100 1070800 53655.00 1070.8000 19.957134 -534250.0
1267 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66781 -73.99024 1000 135 150 25 7 33 1 60 1070800 60681.25 1070.8000 17.646307 -463987.5
1268 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67348 -73.97790 1000 189 175 0 7 30 13 95 1070800 77288.75 1070.8000 13.854539 -297912.5
1269 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66600 -73.99020 1000 210 75 0 4 30 88 92 1070800 68437.50 1070.8000 15.646393 -386425.0
1270 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66858 -73.99083 1200 250 165 40 2 730 80 94 1070800 95447.50 892.3333 11.218733 -116325.0
1271 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66811 -73.99451 1000 121 100 0 5 1125 1 100 1070800 47723.75 1070.8000 22.437466 -593562.5
1272 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67259 -73.98452 1000 300 100 0 1 2 0 NA 1070800 96725.00 1070.8000 11.070561 -103550.0
1273 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67224 -73.97837 1000 495 100 100 3 60 15 97 1070800 157406.25 1070.8000 6.802779 503262.5
1274 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66207 -73.99147 1000 150 50 0 2 1125 17 87 1070800 48362.50 1070.8000 22.141122 -587175.0
1275 11215 Brooklyn , NY, United States Park Slope Brooklyn 40.67691 -73.98163 1000 139 100 0 4 1125 3 100 1070800 52651.25 1070.8000 20.337599 -544287.5
1276 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67706 -73.98406 1000 146 90 25 1 1125 106 88 1070800 54932.50 1070.8000 19.493014 -521475.0
1277 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67497 -73.97913 1000 235 0 50 5 1125 41 99 1070800 67981.25 1070.8000 15.751402 -390987.5
1278 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66406 -73.99490 1000 172 100 0 30 1125 2 80 1070800 61685.00 1070.8000 17.359164 -453950.0
1279 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67256 -73.97212 1000 150 60 0 5 21 10 96 1070800 49822.50 1070.8000 21.492298 -572575.0
1280 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66748 -73.98971 1000 192 50 0 4 14 6 100 1070800 59860.00 1070.8000 17.888406 -472200.0
1281 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66693 -73.98801 1000 225 155 25 2 365 66 88 1070800 86048.75 1070.8000 12.444109 -210312.5
1282 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67378 -73.98299 1000 285 125 0 5 1125 9 100 1070800 96268.75 1070.8000 11.123028 -108112.5
1283 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66690 -73.97827 1000 250 100 15 2 1125 1 100 1070800 84132.50 1070.8000 12.727543 -229475.0
1284 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66875 -73.98779 1000 150 0 20 31 1125 1 100 1070800 42522.50 1070.8000 25.181963 -645575.0
1285 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.66294 -73.99349 1000 169 50 5 2 30 48 90 1070800 53928.75 1070.8000 19.855828 -531512.5
1286 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67031 -73.98603 1000 200 20 0 2 1125 6 93 1070800 57670.00 1070.8000 18.567713 -494100.0
1287 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66722 -73.97811 1000 215 100 0 2 9 2 90 1070800 73456.25 1070.8000 14.577385 -336237.5
1288 11215 Brooklyn , NY, United States Gowanus Brooklyn 40.66640 -73.99305 1000 300 100 20 1 1125 0 NA 1070800 98185.00 1070.8000 10.905943 -88950.0
1289 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66658 -73.98117 1000 200 120 20 3 1125 1 100 1070800 73730.00 1070.8000 14.523260 -333500.0
1290 11215 Brooklyn, NY, United States Sunset Park Brooklyn 40.65957 -73.99253 1000 135 60 0 3 365 15 100 1070800 45716.25 1070.8000 23.422744 -613637.5
1291 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67718 -73.98513 1000 225 90 25 1 1125 67 89 1070800 76558.75 1070.8000 13.986644 -305212.5
1292 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66838 -73.99325 1000 125 60 0 12 1125 0 NA 1070800 42978.75 1070.8000 24.914638 -641012.5
1293 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66617 -73.98862 1000 90 25 25 2 9 15 100 1070800 30112.50 1070.8000 35.559983 -769675.0
1294 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67694 -73.98130 1000 180 50 0 3 14 6 97 1070800 56575.00 1070.8000 18.927088 -505050.0
1295 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66266 -73.98885 1000 150 75 25 3 1125 4 100 1070800 53837.50 1070.8000 19.889482 -532425.0
1296 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66552 -73.99019 1000 169 60 25 2 21 398 97 1070800 56848.75 1070.8000 18.835946 -502312.5
1297 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67886 -73.98702 1000 175 60 0 2 14 4 85 1070800 56666.25 1070.8000 18.896610 -504137.5
1298 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66355 -73.98056 1000 145 95 15 3 1125 147 99 1070800 54658.75 1070.8000 19.590642 -524212.5
1299 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66835 -73.97981 1000 129 85 0 5 1125 2 100 1070800 47723.75 1070.8000 22.437466 -593562.5
1300 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66716 -73.98101 1000 111 65 20 8 22 0 NA 1070800 41336.25 1070.8000 25.904624 -657437.5
1301 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66906 -73.99047 1000 200 70 40 2 21 41 99 1070800 67890.00 1070.8000 15.772573 -391900.0
1302 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.67543 -73.98455 1000 250 75 25 4 30 70 98 1070800 81212.50 1070.8000 13.185162 -258675.0
1303 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67002 -73.98496 1000 150 75 0 3 17 3 100 1070800 52012.50 1070.8000 20.587359 -550675.0
1304 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66420 -73.98435 1000 149 100 0 2 1125 1 100 1070800 55388.75 1070.8000 19.332446 -516912.5
1305 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67079 -73.97384 1000 195 120 30 12 1125 2 100 1070800 73091.25 1070.8000 14.650180 -339887.5
1306 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65853 -73.98301 1000 175 100 0 2 60 54 95 1070800 62506.25 1070.8000 17.131087 -445737.5
1307 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67289 -73.97129 1000 150 125 0 7 31 4 95 1070800 59312.50 1070.8000 18.053530 -477675.0
1308 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66763 -73.97486 1000 260 100 0 3 1125 17 93 1070800 85775.00 1070.8000 12.483824 -213050.0
1309 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66583 -73.98956 1000 150 80 20 14 1125 10 91 1070800 54202.50 1070.8000 19.755546 -528775.0
1310 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66627 -73.98954 1000 175 200 0 60 1125 1 100 1070800 77106.25 1070.8000 13.887331 -299737.5
1311 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67173 -73.98303 1000 300 80 100 3 1125 70 94 1070800 101105.00 1070.8000 10.590970 -59750.0
1312 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66249 -73.98704 1000 150 125 0 3 1125 34 98 1070800 59312.50 1070.8000 18.053530 -477675.0
1313 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66732 -73.98233 1000 159 80 25 2 21 4 95 1070800 57031.25 1070.8000 18.775671 -500487.5
1314 11215 Brooklyn , NY, United States Sunset Park Brooklyn 40.66443 -73.99348 1000 150 80 25 5 1125 2 60 1070800 54567.50 1070.8000 19.623402 -525125.0
1315 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66956 -73.98922 1000 195 160 10 2 1125 4 90 1070800 77471.25 1070.8000 13.821902 -296087.5
1316 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67638 -73.98278 1000 295 75 25 4 30 16 97 1070800 93531.25 1070.8000 11.448580 -135487.5
1317 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66429 -73.99060 1000 120 20 15 5 14 2 100 1070800 36865.00 1070.8000 29.046521 -702150.0
1318 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66437 -73.98230 1000 175 125 50 3 1125 14 96 1070800 69806.25 1070.8000 15.339601 -372737.5
1319 11215 Brooklyn, NY, United States Gowanus Brooklyn 40.66712 -73.99215 1000 200 75 0 2 1125 17 95 1070800 65700.00 1070.8000 16.298326 -413800.0
1320 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67157 -73.98520 1000 147 160 45 7 1125 42 94 1070800 66886.25 1070.8000 16.009269 -401937.5
1321 11215 Brooklyn, NY, United States Windsor Terrace Brooklyn 40.65758 -73.97801 1000 128 90 25 3 1125 10 100 1070800 50005.00 1070.8000 21.413859 -570750.0
1322 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66242 -73.98103 1000 60 20 70 5 1125 10 98 1070800 24455.00 1070.8000 43.786547 -826250.0
1323 11215 Brooklyn, NY, United States South Slope Brooklyn 40.66455 -73.98479 1000 195 49 0 3 1125 6 93 1070800 60535.25 1070.8000 17.688867 -465447.5
1324 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68006 -73.97759 1000 105 100 0 2 1125 88 97 1302300 43343.75 1302.3000 30.045854 -868862.5
1325 11217 Brooklyn , NY, United States Boerum Hill Brooklyn 40.68647 -73.98197 1000 350 130 50 2 1125 6 100 1302300 118442.50 1302.3000 10.995209 -117875.0
1326 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67996 -73.98027 1000 68 75 0 3 18 2 100 1302300 29565.00 1302.3000 44.048706 -1006650.0
1327 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68674 -73.98876 1600 135 80 35 4 7 6 92 1302300 51191.25 813.9375 25.439895 -790387.5
1328 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68348 -73.98087 1000 120 60 0 3 1125 3 80 1302300 41610.00 1302.3000 31.297765 -886200.0
1329 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68107 -73.97876 1000 295 80 30 30 1124 50 96 1302300 94626.25 1302.3000 13.762566 -356037.5
1330 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68665 -73.97740 1000 67 50 15 3 20 14 94 1302300 26736.25 1302.3000 48.709150 -1034937.5
1331 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.67823 -73.97007 1000 209 100 25 3 60 56 95 1302300 73638.75 1302.3000 17.684982 -565912.5
1332 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.67814 -73.98264 1000 150 0 20 4 1125 9 98 1302300 42522.50 1302.3000 30.626139 -877075.0
1333 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68255 -73.98911 1000 150 50 0 5 30 25 97 1302300 48362.50 1302.3000 26.927888 -818675.0
1334 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68326 -73.98004 1000 182 70 20 4 29 83 96 1302300 61502.50 1302.3000 21.174749 -687275.0
1335 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68064 -73.97657 1000 100 50 0 3 25 4 100 1302300 34675.00 1302.3000 37.557318 -955550.0
1336 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68255 -73.98990 1000 400 85 25 30 1125 118 97 1302300 123735.00 1302.3000 10.524912 -64950.0
1337 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68057 -73.97617 1000 250 100 0 2 30 15 100 1302300 83037.50 1302.3000 15.683276 -471925.0
1338 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68919 -73.97474 1000 225 100 20 2 1125 117 99 1302300 77653.75 1302.3000 16.770600 -525762.5
1339 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67427 -73.97652 1000 350 125 20 2 1125 22 100 1302300 115522.50 1302.3000 11.273129 -147075.0
1340 11217 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68204 -73.99249 1000 350 120 35 3 21 41 100 1302300 115887.50 1302.3000 11.237623 -143425.0
1341 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68586 -73.97269 1000 150 100 50 5 1125 12 96 1302300 59312.50 1302.3000 21.956586 -709175.0
1342 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67922 -73.98157 1000 200 50 25 1 1125 0 NA 1302300 63875.00 1302.3000 20.388258 -663550.0
1343 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68831 -73.97549 1000 200 75 25 7 18 3 93 1302300 67525.00 1302.3000 19.286190 -627050.0
1344 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68406 -73.98481 1000 175 100 0 1 1125 12 100 1302300 62506.25 1302.3000 20.834716 -677237.5
1345 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67811 -73.97974 1000 200 80 20 3 9 3 100 1302300 67890.00 1302.3000 19.182501 -623400.0
1346 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68424 -73.98545 1000 250 175 25 5 1125 0 NA 1302300 95812.50 1302.3000 13.592172 -344175.0
1347 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68234 -73.98223 1000 150 100 12 4 1125 2 100 1302300 56538.50 1302.3000 23.033862 -736915.0
1348 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67963 -73.97849 1000 225 125 0 3 1125 12 98 1302300 79843.75 1302.3000 16.310607 -503862.5
1349 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68469 -73.98603 1000 300 100 0 180 450 0 NA 1302300 96725.00 1302.3000 13.463944 -335050.0
1350 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67711 -73.98074 1000 160 100 100 3 16 2 80 1302300 65700.00 1302.3000 19.821918 -645300.0
1351 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68591 -73.98630 1000 275 100 0 2 1125 2 60 1302300 89881.25 1302.3000 14.489118 -403487.5
1352 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68349 -73.98518 1000 150 200 5 29 1125 9 100 1302300 70627.50 1302.3000 18.438993 -596025.0
1353 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68611 -73.98336 1000 175 100 0 3 28 46 97 1302300 62506.25 1302.3000 20.834716 -677237.5
1354 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.67910 -73.97369 1000 150 100 0 1 1125 0 NA 1302300 55662.50 1302.3000 23.396362 -745675.0
1355 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68876 -73.97746 1000 147 100 0 1 5 1 100 1302300 54841.25 1302.3000 23.746724 -753887.5
1356 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67800 -73.98049 1000 270 120 55 3 15 6 87 1302300 95447.50 1302.3000 13.644150 -347825.0
1357 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68725 -73.97458 1000 150 75 0 2 1125 4 100 1302300 52012.50 1302.3000 25.038212 -782175.0
1358 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67630 -73.97287 1000 186 100 0 5 12 0 NA 1302300 65517.50 1302.3000 19.877132 -647125.0
1359 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67861 -73.98066 1000 227 100 0 30 122 2 100 1302300 76741.25 1302.3000 16.970013 -534887.5
1360 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68677 -73.97791 1000 150 50 0 2 6 0 NA 1302300 48362.50 1302.3000 26.927888 -818675.0
1361 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68524 -73.97463 1000 150 60 20 2 30 8 93 1302300 51282.50 1302.3000 25.394628 -789475.0
1362 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67853 -73.98089 1500 219 149 0 5 10 2 100 1302300 81705.25 868.2000 15.939000 -485247.5
1363 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68010 -73.97918 1000 120 60 0 7 30 20 95 1302300 41610.00 1302.3000 31.297765 -886200.0
1364 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68592 -73.98181 1000 275 60 0 1 1125 7 100 1302300 84041.25 1302.3000 15.495962 -461887.5
1365 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.68099 -73.97446 1050 120 80 30 5 29 145 87 1302300 46720.00 1240.2857 27.874572 -835100.0
1366 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.68035 -73.97162 1000 250 250 50 7 120 21 99 1302300 108587.50 1302.3000 11.993093 -216425.0
1367 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67561 -73.97823 1000 300 150 50 2 30 85 96 1302300 107675.00 1302.3000 12.094729 -225550.0
1368 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68664 -73.97683 1000 200 125 60 5 1125 2 100 1302300 77380.00 1302.3000 16.829930 -528500.0
1369 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67651 -73.98007 1000 125 100 25 2 20 45 96 1302300 50643.75 1302.3000 25.714920 -795862.5
1370 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67890 -73.97909 1000 280 125 0 4 30 2 100 1302300 94900.00 1302.3000 13.722866 -353300.0
1371 11217 NY, NY, United States Boerum Hill Brooklyn 40.68597 -73.98507 1000 150 100 0 7 1125 2 100 1302300 55662.50 1302.3000 23.396362 -745675.0
1372 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68812 -73.97545 1000 200 75 50 30 1125 1 100 1302300 69350.00 1302.3000 18.778659 -608800.0
1373 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68860 -73.97409 1000 275 200 0 4 1125 1 100 1302300 104481.25 1302.3000 12.464437 -257487.5
1374 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67629 -73.97654 208 115 0 40 3 1125 200 98 1302300 34401.25 6261.0577 37.856183 -958287.5
1375 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68601 -73.97813 1000 175 100 0 1 1125 0 NA 1302300 62506.25 1302.3000 20.834716 -677237.5
1376 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67925 -73.97463 1000 95 150 0 4 30 0 NA 1302300 47906.25 1302.3000 27.184344 -823237.5
1377 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67812 -73.97353 1000 150 150 0 6 90 1 100 1302300 62962.50 1302.3000 20.683740 -672675.0
1378 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67809 -73.97324 1000 125 100 0 1 1125 0 NA 1302300 48818.75 1302.3000 26.676226 -814112.5
1379 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68554 -73.98471 1000 265 85 0 2 14 10 98 1302300 84953.75 1302.3000 15.329517 -452762.5
1380 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68492 -73.97913 1000 175 105 25 30 20000000 1 100 1302300 65061.25 1302.3000 20.016523 -651687.5
1381 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68082 -73.97713 1000 170 30 50 3 90 120 89 1302300 54567.50 1302.3000 23.865854 -756625.0
1382 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68497 -73.97986 1000 200 0 25 3 28 45 99 1302300 56575.00 1302.3000 23.019001 -736550.0
1383 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68744 -73.97470 1000 275 125 35 2 21 180 97 1302300 96086.25 1302.3000 13.553448 -341437.5
1384 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.68237 -73.97286 1000 125 125 50 3 1124 6 100 1302300 56118.75 1302.3000 23.206148 -741112.5
1385 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.69032 -73.97678 1000 335 100 25 3 25 16 96 1302300 108131.25 1302.3000 12.043697 -220987.5
1386 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68475 -73.98710 1000 175 100 0 14 60 3 100 1302300 62506.25 1302.3000 20.834716 -677237.5
1387 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68662 -73.98305 1000 300 125 0 30 1125 0 NA 1302300 100375.00 1302.3000 12.974346 -298550.0
1388 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67681 -73.97911 1000 170 100 0 2 31 9 98 1302300 61137.50 1302.3000 21.301165 -690925.0
1389 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67889 -73.97813 1000 285 130 35 2 1125 25 95 1302300 99553.75 1302.3000 13.081376 -306762.5
1390 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68669 -73.98498 1000 172 50 0 5 30 4 100 1302300 54385.00 1302.3000 23.945941 -758450.0
1392 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68552 -73.97167 1000 149 100 0 5 7 1 100 1302300 55388.75 1302.3000 23.511995 -748412.5
1393 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.68150 -73.97309 1000 175 100 0 2 1125 10 94 1302300 62506.25 1302.3000 20.834716 -677237.5
1394 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68418 -73.98039 1000 200 80 0 4 30 13 93 1302300 66430.00 1302.3000 19.604094 -638000.0
1395 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67764 -73.97835 1000 200 40 0 3 1125 4 90 1302300 60590.00 1302.3000 21.493646 -696400.0
1396 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68107 -73.98245 1000 265 50 0 3 11 0 NA 1302300 79843.75 1302.3000 16.310607 -503862.5
1398 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68897 -73.98634 1000 165 100 0 30 1125 3 93 1302300 59768.75 1302.3000 21.788978 -704612.5
1399 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68809 -73.97578 1000 175 30 20 2 1125 5 75 1302300 53746.25 1302.3000 24.230528 -764837.5
1400 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68878 -73.97995 1000 450 100 0 1 1125 0 NA 1302300 137787.50 1302.3000 9.451510 75575.0
1401 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68518 -73.98530 1000 190 50 25 2 1125 8 100 1302300 61137.50 1302.3000 21.301165 -690925.0
1402 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68242 -73.97904 1000 215 150 30 3 28 59 95 1302300 82946.25 1302.3000 15.700529 -472837.5
1403 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68792 -73.97671 1000 230 80 30 4 60 2 100 1302300 76832.50 1302.3000 16.949859 -533975.0
1404 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68686 -73.98231 1000 170 120 20 10 14 2 90 1302300 65517.50 1302.3000 19.877132 -647125.0
1405 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68583 -73.98267 1000 148 30 25 2 1125 23 97 1302300 46720.00 1302.3000 27.874572 -835100.0
1406 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67621 -73.97238 1000 140 50 0 5 17 1 60 1302300 45625.00 1302.3000 28.543562 -846050.0
1408 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67815 -73.97878 1000 130 25 10 2 1125 4 95 1302300 39967.50 1302.3000 32.583974 -902625.0
1409 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68361 -73.98671 1000 185 200 5 30 1125 10 98 1302300 80208.75 1302.3000 16.236383 -500212.5
1410 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67280 -73.97166 1000 245 85 20 4 21 3 93 1302300 80938.75 1302.3000 16.089945 -492912.5
1411 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68752 -73.98549 1000 200 120 0 4 1125 0 NA 1302300 72270.00 1302.3000 18.019925 -579600.0
1412 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68969 -73.97797 1000 193 100 0 30 1125 1 100 1302300 67433.75 1302.3000 19.312288 -627962.5
1413 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68322 -73.98968 1000 180 100 20 1 100 183 95 1302300 65335.00 1302.3000 19.932655 -648950.0
1414 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67668 -73.97718 1000 250 120 0 5 1125 2 100 1302300 85957.50 1302.3000 15.150510 -442725.0
1415 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68642 -73.97701 1000 200 25 0 1 1125 0 NA 1302300 58400.00 1302.3000 22.299657 -718300.0
1416 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.67963 -73.97237 1000 260 150 0 14 1125 5 88 1302300 93075.00 1302.3000 13.991942 -371550.0
1417 11217 NY, NY, United States Park Slope Brooklyn 40.67928 -73.97791 1000 130 40 50 3 1125 103 92 1302300 45077.50 1302.3000 28.890245 -851525.0
1418 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68914 -73.97853 1000 325 100 0 3 1125 16 99 1302300 103568.75 1302.3000 12.574256 -266612.5
1419 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68094 -73.98205 1000 190 80 0 3 1125 2 90 1302300 63692.50 1302.3000 20.446677 -665375.0
1420 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68879 -73.97589 1000 150 100 0 3 3 0 NA 1302300 55662.50 1302.3000 23.396362 -745675.0
1421 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68092 -73.97823 1000 68 25 0 14 25 0 NA 1302300 22265.00 1302.3000 58.490905 -1079650.0
1422 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68545 -73.97572 1000 150 90 0 2 30 21 92 1302300 54202.50 1302.3000 24.026567 -760275.0
1423 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68418 -73.98373 1000 250 100 0 1 1125 97 99 1302300 83037.50 1302.3000 15.683276 -471925.0
1424 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68653 -73.98562 1000 230 100 40 4 15 18 98 1302300 80482.50 1302.3000 16.181157 -497475.0
1425 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67853 -73.97749 1000 250 125 25 5 30 0 NA 1302300 88512.50 1302.3000 14.713176 -417175.0
1426 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68719 -73.97777 1000 410 100 0 1 1125 0 NA 1302300 126837.50 1302.3000 10.267468 -33925.0
1427 11217 NY, NY, United States Boerum Hill Brooklyn 40.68557 -73.98537 1000 140 100 0 7 180 31 91 1302300 52925.00 1302.3000 24.606519 -773050.0
1428 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68150 -73.98028 1000 290 80 40 30 1124 48 98 1302300 93987.50 1302.3000 13.856098 -362425.0
1429 11217 Brooklyn , NY, United States Gowanus Brooklyn 40.68251 -73.98486 1000 250 100 25 2 120 57 97 1302300 84862.50 1302.3000 15.346001 -453675.0
1430 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67946 -73.97497 1000 120 100 100 1 30 5 68 1302300 54750.00 1302.3000 23.786301 -754800.0
1431 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67731 -73.97475 1000 180 100 0 3 1125 21 96 1302300 63875.00 1302.3000 20.388258 -663550.0
1432 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67751 -73.98143 1000 100 100 0 2 7 52 99 1302300 41975.00 1302.3000 31.025610 -882550.0
1433 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67975 -73.97666 1000 220 20 20 2 1125 9 80 1302300 64605.00 1302.3000 20.157882 -656250.0
1434 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68916 -73.97700 1000 175 75 25 4 30 27 97 1302300 60681.25 1302.3000 21.461324 -695487.5
1435 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.68049 -73.97302 1000 275 180 25 4 31 19 98 1302300 103386.25 1302.3000 12.596453 -268437.5
1436 11217 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68423 -73.98996 1000 134 30 0 2 1125 2 100 1302300 41062.50 1302.3000 31.715069 -891675.0
1437 11217 Brooklyn, NY, United States Gowanus Brooklyn 40.68075 -73.98181 1000 240 100 0 3 6 4 75 1302300 80300.00 1302.3000 16.217933 -499300.0
1438 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68581 -73.98330 1000 140 120 0 4 1125 2 100 1302300 55845.00 1302.3000 23.319903 -743850.0
1439 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68379 -73.98313 1000 180 60 0 3 30 2 100 1302300 58035.00 1302.3000 22.439907 -721950.0
1440 11217 Brooklyn, NY, United States Prospect Heights Brooklyn 40.68024 -73.97173 1000 164 200 0 30 62 0 NA 1302300 74095.00 1302.3000 17.576085 -561350.0
1441 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68630 -73.98572 1000 400 150 0 5 1000 34 95 1302300 131400.00 1302.3000 9.910959 11700.0
1442 11217 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68308 -73.99120 1000 175 100 25 30 1125 57 99 1302300 64331.25 1302.3000 20.243661 -658987.5
1443 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.68018 -73.97557 1000 250 60 0 6 1125 0 NA 1302300 77197.50 1302.3000 16.869717 -530325.0
1444 11217 Brooklyn, NY, United States Park Slope Brooklyn 40.67796 -73.97616 1000 305 120 50 2 14 67 100 1302300 104663.75 1302.3000 12.442703 -255662.5
1445 11217 Brooklyn, NY, United States Fort Greene Brooklyn 40.68842 -73.97254 1000 149 100 0 4 30 1 80 1302300 55388.75 1302.3000 23.511995 -748412.5
1446 11217 Brooklyn, NY, United States Boerum Hill Brooklyn 40.68598 -73.98004 1000 250 100 0 3 10 0 NA 1302300 83037.50 1302.3000 15.683276 -471925.0
1447 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68406 -73.99156 1000 219 70 0 2 17 0 NA 1202900 70171.25 1202.9000 17.142348 -501187.5
1448 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68047 -73.99594 1000 209 85 75 1 1125 178 97 1202900 75098.75 1202.9000 16.017577 -451912.5
1449 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67990 -73.99722 1000 290 100 50 6 30 3 90 1202900 97637.50 1202.9000 12.320061 -226525.0
1450 11231 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68749 -73.99899 1000 100 300 0 60 62 2 100 1202900 71175.00 1202.9000 16.900597 -491150.0
1452 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67770 -73.99126 1000 246 50 50 4 7 0 NA 1202900 78292.50 1202.9000 15.364179 -419975.0
1453 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68082 -73.99482 1000 89 35 0 4 1125 5 95 1202900 29473.75 1202.9000 40.812587 -908162.5
1454 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68276 -74.00016 1000 275 50 0 4 1125 0 NA 1202900 82581.25 1202.9000 14.566261 -377087.5
1455 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68388 -74.00484 1000 210 160 50 2 1125 11 100 1202900 84497.50 1202.9000 14.235924 -357925.0
1456 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.68075 -74.00961 1000 134 60 15 2 30 157 92 1202900 46537.50 1202.9000 25.847972 -737525.0
1457 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67414 -73.99961 1000 130 100 0 4 31 5 95 1202900 50187.50 1202.9000 23.968120 -701025.0
1458 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67507 -73.99805 1000 160 50 0 2 1125 6 100 1202900 51100.00 1202.9000 23.540117 -691900.0
1459 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67718 -73.99493 1000 250 100 40 1 1125 62 95 1202900 85957.50 1202.9000 13.994125 -343325.0
1460 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68283 -73.99813 1000 240 80 0 3 21 14 97 1202900 77380.00 1202.9000 15.545361 -429100.0
1461 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67828 -73.99136 200 80 20 15 2 7 35 92 1202900 25915.00 6014.5000 46.417133 -943750.0
1462 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67993 -74.00688 1000 450 150 100 1 1125 5 100 1202900 152387.50 1202.9000 7.893692 320975.0
1463 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67797 -73.99969 1000 199 100 0 2 14 17 99 1202900 69076.25 1202.9000 17.414089 -512137.5
1464 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67659 -74.01551 1000 200 80 0 1 30 7 100 1202900 66430.00 1202.9000 18.107783 -538600.0
1465 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68235 -74.00047 1000 150 80 55 2 15 52 95 1202900 56757.50 1202.9000 21.193675 -635325.0
1466 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67728 -74.00572 1000 80 100 0 1 1125 0 NA 1202900 36500.00 1202.9000 32.956164 -837900.0
1467 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67905 -74.00089 1000 125 100 50 21 29 0 NA 1202900 52468.75 1202.9000 22.926027 -678212.5
1468 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67885 -74.00027 1000 150 65 0 5 1125 5 88 1202900 50552.50 1202.9000 23.795064 -697375.0
1469 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68128 -73.99522 1000 275 100 0 31 365 121 99 1202900 89881.25 1202.9000 13.383214 -304087.5
1470 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68446 -74.00142 1000 250 150 20 3 22 1 100 1202900 91797.50 1202.9000 13.103843 -284925.0
1471 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67941 -74.01240 1000 200 80 0 1 1125 0 NA 1202900 66430.00 1202.9000 18.107783 -538600.0
1472 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67795 -74.00747 1000 200 100 25 2 5 17 98 1202900 71175.00 1202.9000 16.900597 -491150.0
1473 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68727 -74.00352 1000 107 90 20 30 1125 35 93 1202900 43891.25 1202.9000 27.406374 -763987.5
1474 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68252 -73.99224 1000 425 250 0 6 1125 5 96 1202900 152843.75 1202.9000 7.870129 325537.5
1475 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68425 -73.99464 1000 200 0 50 1 1125 0 NA 1202900 58400.00 1202.9000 20.597603 -618900.0
1476 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67916 -73.98911 1000 450 125 50 2 7 8 93 1202900 145087.50 1202.9000 8.290859 247975.0
1477 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68384 -73.99813 1000 175 100 0 2 1125 129 99 1202900 62506.25 1202.9000 19.244476 -577837.5
1478 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68183 -74.00369 1000 55 15 0 2 1125 7 86 1202900 17246.25 1202.9000 69.748496 -1030437.5
1479 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67503 -74.01505 1000 150 50 0 1 1125 2 80 1202900 48362.50 1202.9000 24.872577 -719275.0
1480 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68404 -74.00400 1000 75 60 0 8 10 1 80 1202900 29291.25 1202.9000 41.066871 -909987.5
1481 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67778 -73.99520 1000 250 100 50 1 1125 50 91 1202900 86687.50 1202.9000 13.876280 -336025.0
1482 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67573 -73.99878 1000 157 75 0 6 12 1 100 1202900 53928.75 1202.9000 22.305357 -663612.5
1483 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68252 -73.99089 1000 143 85 10 30 90 0 NA 1202900 52286.25 1202.9000 23.006048 -680037.5
1484 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67906 -73.99093 1000 180 150 0 6 55 1 100 1202900 71175.00 1202.9000 16.900597 -491150.0
1485 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67786 -73.99871 1000 149 100 0 6 1125 2 100 1202900 55388.75 1202.9000 21.717406 -649012.5
1486 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67742 -74.00146 1000 200 100 0 7 14 1 100 1202900 69350.00 1202.9000 17.345350 -509400.0
1487 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67811 -74.00606 1000 145 100 25 7 62 2 100 1202900 56118.75 1202.9000 21.434904 -641712.5
1488 11231 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68574 -73.99958 1000 250 125 25 3 1125 31 99 1202900 88512.50 1202.9000 13.590171 -317775.0
1489 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67529 -74.01514 1000 140 100 0 1 1125 0 NA 1202900 52925.00 1202.9000 22.728389 -673650.0
1490 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67811 -74.00102 1000 160 75 0 2 1125 52 97 1202900 54750.00 1202.9000 21.970776 -655400.0
1491 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67967 -74.00154 1000 175 65 15 2 730 233 93 1202900 58491.25 1202.9000 20.565469 -617987.5
1492 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67876 -73.99040 1000 250 120 0 5 1124 40 99 1202900 85957.50 1202.9000 13.994125 -343325.0
1493 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67738 -73.99723 1000 180 90 30 3 1125 17 88 1202900 64605.00 1202.9000 18.619302 -556850.0
1494 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68636 -74.00345 700 159 95 15 2 75 106 94 1202900 58491.25 1718.4286 20.565469 -617987.5
1495 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67579 -73.99968 950 150 100 15 6 300 2 100 1202900 56757.50 1266.2105 21.193675 -635325.0
1496 11231 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68391 -73.99583 1000 285 150 5 5 20 4 100 1202900 100283.75 1202.9000 11.994964 -200062.5
1497 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68443 -74.00392 1000 162 85 0 3 30 37 93 1202900 56757.50 1202.9000 21.193675 -635325.0
1498 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68486 -73.99358 1000 200 130 0 3 9 1 100 1202900 73730.00 1202.9000 16.314933 -465600.0
1499 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68500 -73.99369 1000 250 75 50 3 1125 12 92 1202900 83037.50 1202.9000 14.486226 -372525.0
1500 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67771 -73.99428 1000 250 95 0 2 365 82 94 1202900 82307.50 1202.9000 14.614707 -379825.0
1501 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68013 -73.99397 1000 250 100 0 5 120 49 98 1202900 83037.50 1202.9000 14.486226 -372525.0
1502 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67857 -73.99485 1000 140 50 25 3 1125 3 87 1202900 47450.00 1202.9000 25.350896 -728400.0
1503 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.68003 -73.99039 1000 192 100 0 2 1125 1 100 1202900 67160.00 1202.9000 17.910959 -531300.0
1504 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67692 -73.99986 1000 78 59 0 1 1125 28 86 1202900 29966.50 1202.9000 40.141491 -903235.0
1505 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68153 -74.00160 1000 220 130 40 2 1125 118 96 1202900 82125.00 1202.9000 14.647184 -381650.0
1506 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68235 -73.99806 1000 175 80 0 3 1125 4 100 1202900 59586.25 1202.9000 20.187543 -607037.5
1507 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67480 -74.00006 1000 200 75 25 2 1125 28 83 1202900 67525.00 1202.9000 17.814143 -527650.0
1508 11231 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68534 -73.99471 1000 235 165 30 5 1125 10 90 1202900 90611.25 1202.9000 13.275393 -296787.5
1509 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67864 -74.00546 1000 750 150 0 1 1125 6 100 1202900 227212.50 1202.9000 5.294163 1069225.0
1510 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68344 -73.99330 1000 210 75 50 2 5 75 96 1202900 72087.50 1202.9000 16.686666 -482025.0
1511 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67862 -73.99230 1000 120 100 0 30 1125 2 60 1202900 47450.00 1202.9000 25.350896 -728400.0
1512 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67846 -73.99443 1000 190 70 20 3 60 51 97 1202900 63692.50 1202.9000 18.886054 -565975.0
1513 11231 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68525 -73.99837 1000 200 75 50 2 7 4 100 1202900 69350.00 1202.9000 17.345350 -509400.0
1514 11231 Brooklyn , NY, United States Carroll Gardens Brooklyn 40.68310 -73.99945 1000 180 80 40 4 1125 0 NA 1202900 63875.00 1202.9000 18.832094 -564150.0
1515 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67962 -74.01294 1000 122 100 0 13 89 1 100 1202900 47997.50 1202.9000 25.061722 -722925.0
1516 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68374 -73.99368 1000 88 50 40 1 1125 11 100 1202900 34310.00 1202.9000 35.059749 -859800.0
1517 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67965 -73.98899 1000 150 40 25 5 15 2 100 1202900 48727.50 1202.9000 24.686266 -715625.0
1518 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67914 -74.00630 1000 125 50 50 3 10 1 100 1202900 45168.75 1202.9000 26.631244 -751212.5
1519 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67846 -74.01410 1000 120 100 0 4 14 2 100 1202900 47450.00 1202.9000 25.350896 -728400.0
1520 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68108 -73.99381 1000 150 50 35 2 1125 0 NA 1202900 50917.50 1202.9000 23.624491 -693725.0
1521 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67584 -74.00057 1000 200 100 0 2 20 6 97 1202900 69350.00 1202.9000 17.345350 -509400.0
1522 11231 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68580 -73.99977 1000 350 100 25 30 180 2 100 1202900 112237.50 1202.9000 10.717452 -80525.0
1523 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67890 -74.00117 1000 180 60 20 4 60 5 95 1202900 59495.00 1202.9000 20.218506 -607950.0
1524 11231 Brooklyn , NY, United States Carroll Gardens Brooklyn 40.68321 -73.99681 1000 199 150 50 2 1125 116 100 1202900 80026.25 1202.9000 15.031318 -402637.5
1525 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67578 -73.99814 1000 199 150 0 2 7 6 97 1202900 76376.25 1202.9000 15.749660 -439137.5
1526 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68328 -73.99846 1000 250 100 0 4 1125 0 NA 1202900 83037.50 1202.9000 14.486226 -372525.0
1527 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67895 -73.99529 1000 225 120 0 6 20 1 80 1202900 79113.75 1202.9000 15.204690 -411762.5
1528 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67995 -73.99665 1000 188 50 0 2 7 7 100 1202900 58765.00 1202.9000 20.469667 -615250.0
1529 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67980 -73.99272 1000 200 160 0 2 1125 7 100 1202900 78110.00 1202.9000 15.400077 -421800.0
1530 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67785 -74.00735 1000 175 130 30 30 90 14 96 1202900 69076.25 1202.9000 17.414089 -512137.5
1531 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67830 -74.00135 1000 165 65 20 2 365 150 92 1202900 56118.75 1202.9000 21.434904 -641712.5
1532 11231 Brooklyn, NY, United States Gowanus Brooklyn 40.67718 -73.99656 1000 350 100 0 3 1125 0 NA 1202900 110412.50 1202.9000 10.894600 -98775.0
1533 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68418 -74.00313 1000 175 150 20 2 1125 30 100 1202900 71266.25 1202.9000 16.878957 -490237.5
1534 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68120 -74.00116 1000 160 100 0 3 1125 2 90 1202900 58400.00 1202.9000 20.597603 -618900.0
1535 11231 Brooklyn, NY, United States Columbia St Brooklyn 40.68787 -74.00037 1000 150 150 50 15 1125 5 96 1202900 66612.50 1202.9000 18.058172 -536775.0
1536 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67737 -74.00733 1000 170 40 20 2 1125 8 98 1202900 53837.50 1202.9000 22.343162 -664525.0
1537 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67992 -73.99282 1000 100 125 30 4 1125 2 90 1202900 47815.00 1202.9000 25.157377 -724750.0
1538 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.68152 -73.99518 1000 250 100 0 28 45 4 100 1202900 83037.50 1202.9000 14.486226 -372525.0
1539 11231 Brooklyn, NY, United States Carroll Gardens Brooklyn 40.67939 -73.99398 1000 298 195 20 30 1125 131 88 1202900 111507.50 1202.9000 10.787615 -87825.0
1540 11234 Brooklyn, NY, United States Flatlands Brooklyn 40.63129 -73.92748 1000 165 130 40 2 1125 5 84 476900 67068.75 476.9000 7.110614 193787.5
1541 11234 Brooklyn, NY, United States Flatlands Brooklyn 40.61938 -73.92471 1000 125 100 0 14 1125 10 86 476900 48818.75 476.9000 9.768788 11287.5
1542 11234 Brooklyn, NY, United States Flatlands Brooklyn 40.62906 -73.92938 1000 117 125 100 1 1125 24 98 476900 57578.75 476.9000 8.282569 98887.5
1543 11234 Brooklyn, NY, United States Flatlands Brooklyn 40.63116 -73.92616 1000 170 130 50 1 1125 0 NA 476900 69167.50 476.9000 6.894857 214775.0
1544 11234 Brooklyn, NY, United States Flatlands Brooklyn 40.62636 -73.91824 1000 110 100 0 3 14 6 100 476900 44712.50 476.9000 10.665921 -29775.0
1545 11234 Brooklyn, NY, United States Flatlands Brooklyn 40.62250 -73.92578 1000 139 100 25 3 29 108 95 476900 54476.25 476.9000 8.754274 67862.5
1546 11234 Brooklyn, NY, United States East Flatbush Brooklyn 40.63693 -73.92242 1000 105 30 0 2 30 108 98 476900 33123.75 476.9000 14.397524 -145662.5
1547 11234 Brooklyn, NY, United States Flatlands Brooklyn 40.62392 -73.93554 1000 200 35 75 1 5 28 99 476900 65335.00 476.9000 7.299304 176450.0
1548 11234 Brooklyn, NY, United States Mill Basin Brooklyn 40.61224 -73.91854 1000 85 80 15 3 25 25 94 476900 36043.75 476.9000 13.231143 -116462.5
1549 11434 Queens, NY, United States Jamaica Queens 40.67414 -73.76454 1000 50 10 0 7 120 14 96 382300 15147.50 382.3000 25.238488 -230825.0
1550 11434 Queens, NY, United States Jamaica Queens 40.67695 -73.79045 1000 99 15 20 1 1125 96 92 382300 30751.25 382.3000 12.432015 -74787.5
1551 11434 Queens, NY, United States Jamaica Queens 40.67560 -73.78244 1000 150 0 25 1 29 257 98 382300 42887.50 382.3000 8.914019 46575.0
1552 11434 Queens, NY, United States Jamaica Queens 40.67282 -73.77793 1000 190 50 50 1 29 16 98 382300 62962.50 382.3000 6.071868 247325.0
1553 11434 Queens, NY, United States Jamaica Queens 40.66745 -73.78156 1000 130 100 0 1 1125 4 80 382300 50187.50 382.3000 7.617435 119575.0
1554 11434 Queens, NY, United States Jamaica Queens 40.68370 -73.79343 1000 75 100 0 2 29 1 100 382300 35131.25 382.3000 10.882050 -30987.5
1555 11434 Queens, NY, United States Jamaica Queens 40.67606 -73.78288 1000 250 0 25 1 29 0 NA 382300 70262.50 382.3000 5.441025 320325.0
1556 11434 Queens, NY, United States Jamaica Queens 40.67621 -73.78279 1000 160 75 0 3 30 0 NA 382300 54750.00 382.3000 6.982648 165200.0
1557 11434 Queens, NY, United States Jamaica Queens 40.67138 -73.77238 1000 90 85 50 1 28 7 100 382300 40697.50 382.3000 9.393697 24675.0
1558 11434 Queens, NY, United States Springfield Gardens Queens 40.66272 -73.76849 1000 89 40 0 1 28 88 96 382300 30203.75 382.3000 12.657369 -80262.5
1559 11434 Queens, NY, United States Springfield Gardens Queens 40.66203 -73.76980 1000 200 50 0 30 365 68 96 382300 62050.00 382.3000 6.161160 238200.0
1560 11434 Queens, NY, United States Jamaica Queens 40.68144 -73.77739 1000 250 100 0 1 1 0 NA 382300 83037.50 382.3000 4.603944 448075.0
1561 11434 Queens, NY, United States Jamaica Queens 40.67956 -73.76621 1000 83 50 15 3 28 29 97 382300 31116.25 382.3000 12.286185 -71137.5
1562 11434 Queens, NY, United States Jamaica Queens 40.68479 -73.77606 1000 125 25 0 1 7 2 100 382300 37868.75 382.3000 10.095395 -3612.5
1563 11434 Queens, NY, United States Jamaica Queens 40.68636 -73.78866 1000 129 75 15 2 14 3 93 382300 47358.75 382.3000 8.072426 91287.5
1564 11434 Queens, NY, United States Jamaica Queens 40.68462 -73.77582 1000 120 50 0 3 28 9 96 382300 40150.00 382.3000 9.521793 19200.0
#Analyzing Cost vs Revenue by Neighbourhood 

options(scipen = '999')
p1 <- ggplot(FinalDataset, 
        aes(x=eval(parse(text='X2017.06')), 
        fill=eval(parse(text='neighbourhood_group_cleansed')))) +
  geom_histogram(alpha=0.7, position="identity", aes(y = ..density..), color="black") +
  geom_density(alpha=0.7) +
  geom_vline(aes(xintercept=mean(eval(parse(text='X2017.06'))))
             , color="black", linetype="dashed", size=1) +
  labs(x='House Price', y = "Density") +
  guides(fill=guide_legend(title='Neighbourhood')) + 
  scale_x_continuous(limits = c(0, 2000000))

p2 <- ggplot(FinalDataset, 
       aes(x=eval(parse(text='price')), 
           fill=eval(parse(text='neighbourhood_group_cleansed')))) +
  geom_histogram(alpha=0.7, position="identity", aes(y = ..density..), color="black") +
  geom_density(alpha=0.7) +
  geom_vline(aes(xintercept=mean(eval(parse(text='price'))))
             , color="black", linetype="dashed", size=1) +
  labs(x='Price Per Night', y = "Density") +
  scale_x_continuous(limits = c(0, 1000)) +
  guides(fill=guide_legend(title='Neighbourhood'))

multiplot(p1, p2)
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 636 rows containing non-finite values (stat_bin).
## Warning: Removed 636 rows containing non-finite values (stat_density).
## Warning: Removed 8 rows containing missing values (geom_bar).
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing missing values (geom_bar).

#visualizing breakeven time and number of properties for each zipcode 

p3 <- ggplot(FinalDataset, aes(x = as.factor(zipcode), y = Yearstostartprofiting , fill = neighbourhood_group_cleansed)) + 
  geom_boxplot() +
  labs(x = "Zipcode", y = "Breakeven time") + 
  scale_y_continuous(breaks=seq(0, 40, 5)) +
  theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
  guides(fill = guide_legend(title = "Neighbourhood")) +
  labs(fill='Neighbourhood', y='Breakeven Time (years)') 

p4 <-
  ggplot(FinalDataset, aes(x=as.factor(zipcode))) +
  geom_histogram(stat = "count", aes(fill = neighbourhood_group_cleansed)) +
  geom_text(stat = "count", aes(label = ..count.., y = ..count.., vjust = -0.2)) +
  labs(x = "Zipcode", y = "Total Listing", fill='Neighbourhood') + 
  theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
  scale_y_continuous(breaks = seq(0, 150, 25))
## Warning: Ignoring unknown parameters: binwidth, bins, pad
multiplot(p3, p4)

#ploting and viewing top 10 properties that will breakeven 
FinalDataset1 <- FinalDataset[order(FinalDataset$Yearstostartprofiting),]
top_10 <- head(FinalDataset1, 10)
view(top_10)


plot_ly(y=top_10$zipcode, x=top_10$Yearstostartprofiting ,type="scatter", mode="markers+lines" , color=top_10$neighbourhood_group_cleansed, text = ~paste('Cumulative Income in shown years: ', top_10$totalannualincome*top_10$Yearstostartprofiting,
                      '</br> neighbourhood: ', top_10$neighbourhood_cleansed,
                      '</br> Number of reviews: ', top_10$number_of_reviews,
                      '</br> Cost: ', top_10$X2017.06,
                      '</br> review_scores_rating: ', top_10$review_scores_rating
                      )
)
## Warning: `arrange_()` is deprecated as of dplyr 0.7.0.
## Please use `arrange()` instead.
## See vignette('programming') for more help
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_warnings()` to see where this warning was generated.
#displaying top 10 properties that will breakeven 
kable(top_10) %>% 
  kable_styling(bootstrap_options = c("striped", "hover", "responsive")) %>% 
  scroll_box(width = "100%", height = "500px")
zipcode street neighbourhood_cleansed neighbourhood_group_cleansed latitude longitude square_feet price cleaning_fee extra_people minimum_nights maximum_nights number_of_reviews review_scores_rating X2017.06 totalannualincome pricepersqrft Yearstostartprofiting revenue_in_ten_years
1560 11434 Queens, NY, United States Jamaica Queens 40.68144 -73.77739 1000 250 100 0 1 1 0 NA 382300 83037.5 382.3 4.603944 448075
1210 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66958 -73.98623 1000 700 250 0 1 10 2 20 1070800 228125.0 1070.8 4.693918 1210450
1190 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67202 -73.97131 1000 700 200 0 7 30 0 NA 1070800 220825.0 1070.8 4.849089 1137450
1035 10305 Staten Island, NY, United States Shore Acres Staten Island 40.60525 -74.06745 1000 300 0 50 1 7 0 NA 425100 85775.0 425.1 4.955990 432650
634 10025 New York, NY, United States Upper West Side Manhattan 40.79233 -73.96430 1000 950 100 0 4 1125 6 100 1431000 274662.5 1431.0 5.210031 1315625
1509 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67864 -74.00546 1000 750 150 0 1 1125 6 100 1202900 227212.5 1202.9 5.294163 1069225
678 10025 New York, NY, United States Upper West Side Manhattan 40.79507 -73.97568 1000 900 100 125 1 200 7 93 1431000 270100.0 1431.0 5.298038 1270000
1555 11434 Queens, NY, United States Jamaica Queens 40.67606 -73.78288 1000 250 0 25 1 29 0 NA 382300 70262.5 382.3 5.441025 320325
648 10025 New York, NY, United States Upper West Side Manhattan 40.79478 -73.97474 1000 900 100 0 1 1125 0 NA 1431000 260975.0 1431.0 5.483284 1178750
1096 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68631 -73.99624 1000 700 300 0 4 30 3 NA 1420700 235425.0 1420.7 6.034618 933550
#ploting and viewing top 10 properties that will generate highest revenue in 10 years
FinalDataset2 <- FinalDataset[order(FinalDataset$revenue_in_ten_years),]
top_10_r <- tail(FinalDataset2, 10)
view(top_10_r)


plot_ly(y=top_10_r$zipcode, x=top_10_r$revenue_in_ten_years ,type="scatter", mode="markers+lines" , color = top_10_r$neighbourhood_group_cleansed,
        text = ~paste('Cumulative Income in shown years: ', top_10_r$totalannualincome*top_10_r$Yearstostartprofiting,
                      '</br> Street: ', top_10_r$neighbourhood_cleansed,
                      '</br> Number of reviews: ', top_10_r$number_of_reviews,
                      '</br> Cost: ', top_10_r$X2017.06 ,
                      '</br> review_scores_rating: ', top_10$review_scores_rating
                      )
)
## Warning in RColorBrewer::brewer.pal(N, "Set2"): minimal value for n is 3, returning requested palette with 3 different levels

## Warning in RColorBrewer::brewer.pal(N, "Set2"): minimal value for n is 3, returning requested palette with 3 different levels
#displaying top 10 properties that will generate highest revenue in 10 years
kable(top_10_r) %>% 
  kable_styling(bootstrap_options = c("striped", "hover", "responsive")) %>% 
  scroll_box(width = "100%", height = "500px")
zipcode street neighbourhood_cleansed neighbourhood_group_cleansed latitude longitude square_feet price cleaning_fee extra_people minimum_nights maximum_nights number_of_reviews review_scores_rating X2017.06 totalannualincome pricepersqrft Yearstostartprofiting revenue_in_ten_years
635 10025 New York, NY, United States Morningside Heights Manhattan 40.80395 -73.96436 1000 600 200 50 1 1125 0 NA 1431000 197100.0 1431.0 7.260274 540000.0
919 10036 New York, NY, United States Theater District Manhattan 40.75607 -73.98593 1000 699 300 0 6 365 186 99 1712900 235151.2 1712.9 7.284248 638612.5
1096 11201 Brooklyn, NY, United States Cobble Hill Brooklyn 40.68631 -73.99624 1000 700 300 0 4 30 3 NA 1420700 235425.0 1420.7 6.034618 933550.0
815 10036 New York, NY, United States Theater District Manhattan 40.76015 -73.98497 1000 890 150 79 1 300 2 100 1712900 271304.5 1712.9 6.313570 1000145.0
1509 11231 Brooklyn, NY, United States Red Hook Brooklyn 40.67864 -74.00546 1000 750 150 0 1 1125 6 100 1202900 227212.5 1202.9 5.294163 1069225.0
1190 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.67202 -73.97131 1000 700 200 0 7 30 0 NA 1070800 220825.0 1070.8 4.849089 1137450.0
648 10025 New York, NY, United States Upper West Side Manhattan 40.79478 -73.97474 1000 900 100 0 1 1125 0 NA 1431000 260975.0 1431.0 5.483284 1178750.0
1210 11215 Brooklyn, NY, United States Park Slope Brooklyn 40.66958 -73.98623 1000 700 250 0 1 10 2 20 1070800 228125.0 1070.8 4.693918 1210450.0
678 10025 New York, NY, United States Upper West Side Manhattan 40.79507 -73.97568 1000 900 100 125 1 200 7 93 1431000 270100.0 1431.0 5.298038 1270000.0
634 10025 New York, NY, United States Upper West Side Manhattan 40.79233 -73.96430 1000 950 100 0 4 1125 6 100 1431000 274662.5 1431.0 5.210031 1315625.0